Updating can refer to the modification of data or configuration by an application, process, or service, or can refer to the modification of software by a process.
Questions tagged [updating]
1058 questions
5
votes
0 answers
sbt can't find scala.reflect.Manifest when getting Unidoc.scala settings with scala 2.10.0
I just updated my project to Scala 2.10.0 using SBT 0.12. But now, when running sbt, I get the following error:
java.lang.NoClassDefFoundError: scala/reflect/ManifestFactory$
at X.build.Unidoc$.(Unidoc.scala:8)
at…

Nacht
- 10,488
- 8
- 31
- 39
4
votes
3 answers
Select rows from a DataFrame based on a values in another dataframe and updating one of the column with values according to the second DataFrame
I have two Dataframes df and df1.
Main DataFrame is as follows:
DF:
start end price
0 A Z 1
1 B Y 2
2 C X 3
3 A Z 4
4 D W 5
Second DataFrame:
DF1:
start end price
0 A Z 100
1 B Y 200
I want…

AISH
- 61
- 1
- 5
4
votes
1 answer
How to update the x/y position of a popper.js element?
How can I move the popper.js element to follow specific coords?
I was able to get (I think) the caret position in a textarea but now I need to make Popper.js follow it.
I tried, update and onUpdate on the root and in the modifiers. I do not…

Jayd
- 183
- 3
- 15
4
votes
4 answers
"sudo apt update" and all I get is (target content is configured multiple times), (the repository does not have a Release file), (404 not found)
this is my first time to install linux on my system, I think there is a lot of mess here and I feel helpless from too many errors I got when trying to update my system, when use terminal with this command:
sudo apt update
I got many errors…

ELTA
- 1,474
- 2
- 12
- 25
4
votes
4 answers
Autoupdating .net applications
I've written 2 reasonably large scale apps in .net so far, and both of them have needed an updating facility to automatically update the application when I roll out new code.
I've found the 'Enterprise application block updater' a bit too complex…

Dave Arkell
- 3,920
- 2
- 22
- 27
4
votes
2 answers
React-native is not updating changes in android
When i try to run on android the latest code is not updating. However, i can see the changes on IOS device.
I tried reseting the cache react-native start --reset-cache, i reinstalled watchman.But nothing helps me. Could anyone figure it out?

Bipin
- 151
- 1
- 9
4
votes
3 answers
_angular_core.Version is not a constructor after updating Angular 2
I believe the problem is related to updating angular 2. My actual sequence of events that led to this error was 1. installing ng2-typeahead, 2. getting errors and realizing I needed to install FormsModule, 3. getting more errors and npm updating…

dcoli
- 183
- 1
- 1
- 14
4
votes
1 answer
AdMob Android requesting ads while program is not in view
Hello I am having a problem trying to stop adMob from requesting new ads. If a person hits the back key or home the application goes to sleep, but admob continues to request new ads. The only way it stops is if the user selects quit from the menu.…

JMazApps
- 41
- 3
4
votes
6 answers
Error install pecl/raphf and propro
I have updated php5.5 to php7.0.
I try to run this commande :
pecl install pecl/raphf
But I obtain this error :
Parse error: syntax error, unexpected 'new' (T_NEW) in /usr/share/php/PEAR/Frontend.php on line 91
How I can install :
pecl install…

DevLoots
- 747
- 1
- 6
- 21
4
votes
1 answer
ItemsControl bound to ObservableColellection not updating UI on property change
After a lot of headache and late hours, I've given up on trying to solve the problem to this answer myself. While there is a lot of literature for very similar issues that can be found, I haven't been able to find an exact solution to my particular…

mt1985
- 85
- 1
- 7
4
votes
2 answers
mongodb not updating all the documents
I have documents
{name:"ajeetkumar",age:26} and {age:26,name:"ajeetkumar"} stored in collection sample.
I want to update the age field and i use command db.sample.update({name:"ajeetkumar"},{$set:{age:28}})
It only updates the first document where…

Ajeetkumar
- 1,271
- 7
- 16
- 34
4
votes
5 answers
Append to a webpage in javascript
What I want to do is that: a webpage with continuously updating content. (In my case is updating every 2s) New content is appended to the old one instead of overwriting.
Here is the code I have:
var msg_list = new Array(
"Hello,…

Lily
- 5,872
- 19
- 56
- 75
4
votes
1 answer
Updating a zeroinfl model in R
I have an example data frame as follows.
data.df = data.frame(Y=c(0,0,0,0,0,0,0,0,0,0,1,2,3),X1=c(3,5,3,2,5,6,3,5,1,3,1,7,8),X2=c(6,2,1,6,7,1,1,4,2,6,7,2,3))
To create and update the Poisson model I would do the following
model.poi =…

Corey
- 43
- 6
4
votes
1 answer
MongoDB C# Driver - Update without Set/Replace
I am communicating with a MongoDB database that is shared by another application that uses some fields that my application doesn't use or care about.
Throughout my code, I use Update.Replace to update the object. The problem is that it replaces the…

Paul Knopf
- 9,568
- 23
- 77
- 142
4
votes
3 answers
iOS App Store updates - Patching?
When submitting an update to an app to the app store (via iTunes Connect?), is the update necessarily a whole binary? Can an update come in the form of a patch? If a second version of an app shares a lot of assets and logic from the previous…

kid_x
- 1,415
- 1
- 11
- 31