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
0
votes
0 answers

maven. Is deployed (remote) but older SNAPSHOT version takes precedence over more recent installed (local) when --update-snapshots is used?

It is clear that --update-snapshots option makes maven download SNAPSHOTs from artifactory, but what if I have more recent version built and installed in .m2 locally?
ludenus
  • 1,161
  • 17
  • 30
0
votes
1 answer

aws snapshot does not connect to internet

we have an instance and the instance has a daily snapshots. Anyway there was an error and we are trying to restore the last snapshot but the problem is that when we create a new instance using the snapshot (of course we create an image first) is…
keloa
  • 115
  • 2
  • 11
0
votes
2 answers

NativeScript Bundle Snapshot - ReferenceError: com is not defined

I'm trying to bundle a NativeScript App with the snapshot flag like this: tns build android --bundle --env.snapshot The following error appears: ERROR in NativeScriptSnapshot. Snapshot generation failed! Target architecture: x86 # Script run…
kenny
  • 1,628
  • 20
  • 14
0
votes
1 answer

RDS Oracle snapshot stuck at creating - 0% when copied to a different AWS region

I'm trying to copy a DB snapshot from one AWS region to another, but the snapshot is always stuck at creating, with 0% progress. I've been able to copy and restore other DB snapshots between the two regions, but any snapshot from this specific…
Trevor Creed
  • 13
  • 1
  • 3
0
votes
1 answer

Stash and Unstash in Teamcity

In Jenkins you have the option to stash and unstash files, sort of like uploading and downloading artifacts that are not visible to the user. It grants you the ability to do part of the build on one machine, and then continue doing it on another…
Alex Weitz
  • 3,199
  • 4
  • 34
  • 57
0
votes
1 answer

Jest snapshot test - Error occurs when creating new object in componentDidMount()

I have a component whose root DOM element is a . I use the componentDidMount() method to draw an image on the canvas; However, I am using a 3rd-party library, and when the test attempts to create a new object derived from that library, I…
sme
  • 4,023
  • 3
  • 28
  • 42
0
votes
1 answer

Fastlane Snapshot – Blank Screenshot

I am currently trying to automate the process of capturing screenshots of my app. The problem I am facing is, that Snapshot just creates some blank 2x2px Images like this one: Yes, I have configured Snapshot in the setUp Method: override func…
schuetzi
  • 35
  • 5
0
votes
1 answer

Android Firebase DataSnapshot Cast to Class

I have a firebase database. When I get value from the snapshot, I have HashMap in below: and I have a Snap class like below. How can I cast the DataSnapshot to List of the class such as List snapList = (HashMap)…
Gurcan
  • 428
  • 1
  • 8
  • 19
0
votes
2 answers

Is it possible to get database reference without childByAutoId (). Key?

Is there a way to dynamically get a child database from the parent instance, without having to use childByAutoId () ? { "artists" : { "artists_id_1" : { "name" : "Atif Aslam", "genre" : "Rock" }, "artists_id_2" : { …
Ewerson
  • 109
  • 1
  • 10
0
votes
1 answer

Database snapshot before update a record

The requirement is user should be able to see the history of what happened for a page/post. Kind of like git commit history for a file but here is database single record. Our current architecture is legacy and does not want to do massive refactor. I…
Tpn Knvl
  • 43
  • 4
0
votes
1 answer

gcloud compute: issue command and close terminal

Since it takes time to create snapshot of google compute engine instance, I wonder it is possible to issues gcloud compute disks snapshot command on my local machine and close terminal on local machine without interrupting shapshot creation process?
user1700890
  • 7,144
  • 18
  • 87
  • 183
0
votes
1 answer

AWS RDS snapshot by Java Code Example

I have an RDS PostgreSQL Instance. Inside the instance I have Databases and tables. Daily I need to update my db through lambda java function. I am done this and works fine. But before updating my table from my lambda java function I need to take a…
ShaiNe Ram
  • 395
  • 2
  • 6
  • 19
0
votes
2 answers

Creating a snapshot for a proxmox VM is not possible either in the GUI or CLI

I'm trying to make a snapshot of one of my VMs via the GUI but the button to creat the snapshot is greyed out, so I wanted to try and do it using the CLI so I could see any helpful output and I got this: pct snapshot 106 "testing" Configuration…
VaTo
  • 2,936
  • 7
  • 38
  • 77
0
votes
1 answer

How do I send btrfs snapshots to multiple destination drives?

How do I make a BTRFS incremental backup to multiple source destinations, so I don't have to run btrfs send multiple times? btrfs send -p /tmp/parent_subvol /tmp/incremental_backup_snapshot | btrfs receive /mnt/destination_drive1 btrfs send -p…
Geremia
  • 4,745
  • 37
  • 43
0
votes
1 answer

How do I use the last value in an array as a path for .child() when retrieving a snapshot?

I'm new to Firebase and have a function that writes all of my event ID's to an array. I want to use the last value in that array (the last event ID) to lookup the children of that specific eventID. I know how to get the last item in the array but…
1 2 3
99
100