Questions tagged [snapshot]

A snapshot is the state of something (e.g. a folder) at a specific point in time. In this case, snapshot means the current content of the test branch, this doesn't have to be the head revision

I'd like to extend the concept of snapshot. As you can see here the snapshot cares about running processes allocated in memory too.

1849 questions
23
votes
5 answers

The exact moment iOS takes the view snapshot when entering background?

I have a problem when putting my iPhone app to background by pushing the exit button, and then relaunching by tapping the launch icon on the home screen: the app's view does return to its initial state like I want it to, but before that it flashes…
23
votes
1 answer

Amazon EBS, snapshots as incremental backups

I'm working on an automated mechanism for our EBS volumes to be backed up on a daily basis. I know quite well the steps to create a new snapshot. Apparently it's all quite simple, you have an EBS volume which you can snapshot, and you can restore…
xuuso
  • 571
  • 5
  • 14
23
votes
2 answers

Snapshot taking and restore strategies

I've been reading about CQRS+EventSoucing patterns (which I wish to apply in a near future) and one point common to all decks and presentations I found is to take snapshots of your model state in order to restore it, but none of these share…
Mikhas
  • 851
  • 1
  • 12
  • 31
22
votes
7 answers

Is there a way to make Maven download snapshot versions automatically?

So I have a project that depends on a snapshot version of another project. The dependency is: org.oop oop 0.9.9-SNAPSHOT For the oop project, I did do a…
chrisapotek
  • 6,007
  • 14
  • 51
  • 85
22
votes
5 answers

Maven deploys to snapshot instead of release

I'm trying to release a project using maven but instead of releasing to the Releases repository it puts it in our Snapshots repo. My pom looks like:
Leon Roy
  • 580
  • 1
  • 5
  • 16
21
votes
4 answers

Working offline with SBT and SNAPSHOT dependencies

I have never been able to work offline with SBT on any of my projects. Now I'm in the middle of a move and my wardrobe-server hosting nexus is offline. So running say: sbt "set offline := true" run I get among other missing deps: [error] unresolved…
Viktor Hedefalk
  • 3,572
  • 3
  • 33
  • 48
19
votes
4 answers

Nexus Won't Serve SNAPSHOTs From Default Public Group

For some reason I can't get Nexus to serve my SNAPSHOT artifacts via the default public group. I've read the relevant bit of the Nexus manual and search Google, but nothing I do seems to work. I've implemented the stuff in section 4.2. (Configuring…
fatboab
  • 413
  • 1
  • 5
  • 12
18
votes
1 answer

What is the snapshot concept in dart?

I have read that with dart your application can start up to 10x faster because of snapshots. Can anyone explain what it really is and how it works? In what kind of application would i be using snapshots?
Gero
  • 12,993
  • 25
  • 65
  • 106
18
votes
5 answers

Maven SNAPSHOT jar file names not consistent using Maven Assembly in MANIFEST file

Here is the scenario: Two Maven 3 project builds. Build 1 has snapshot jars that get deployed to Nexus. Build 2 has dependencies on the snapshots, referenced like 1.0.0-SNAPSHOT, that gets packaged up and zipped up using the mvn clean package…
Thaldin
  • 283
  • 3
  • 15
17
votes
2 answers

Can I download an snapshot in Google Compute Engine?

Sorry if it's duplicated, I didn't find anything similar. I have my VM running and already created an snapshot and now I want to have my snapshot someplace else. Say, download it to my computer, store it in another cloud product or reuse it in…
antonio.fornie
  • 1,740
  • 2
  • 13
  • 23
17
votes
2 answers

Programmatically take a screenshot from service

it is easy to this code Bitmap bitmap; View v1 = MyView.getRootView(); v1.setDrawingCacheEnabled(true); bitmap = Bitmap.createBitmap(v1.getDrawingCache()); v1.setDrawingCacheEnabled(false); and it works great , but this is the case if there is…
Lukap
  • 31,523
  • 64
  • 157
  • 244
16
votes
0 answers

What causes Error -25204 getting snapshot for element during iOS app UI test

I am getting following error during a UI test (using simulator for iPhone 6): Assertion Failure: UI Testing Failure - Failure getting snapshot Error Domain=XCTestManagerErrorDomain Code=9 "Error -25204 getting snapshot for element
Hasaa2 Khidala
  • 161
  • 1
  • 3
15
votes
5 answers

Best way to handle old snapshots in local repository?

We have a Nexus local repository manager which handles all our internal projects (as well as mirroring outside repositories). For our internal projects, we only keep the most recent version's snapshot builds. For example if we had ProjectX 1.0,…
user1071914
  • 3,295
  • 11
  • 50
  • 76
15
votes
1 answer

Jest obsolete snapshot warning causes test failure: ignore warnings when exiting Jest

I have a test suite/file that I have disabled. It has an associated snapshot file. For my particular situation I do not want to delete or update the snapshot file (long-story-short: it is used elsewhere). So, Jest logs out just a warning, rather…
cham
  • 8,666
  • 9
  • 48
  • 69
15
votes
2 answers

What is the difference between snapshot dependency and finished build trigger in TeamCity?

It appears to me that the function of snapshot dependency completely supersedes that of finished build trigger in TeamCity. Can anyone explain more the effect of these methods if they result in different chain behaviour? As an example, if I had a…
Scott Chang
  • 301
  • 4
  • 11