Questions tagged [preserve]

A process of keeping a particular fragment from entity while replacing the rest of it.

136 questions
1
vote
3 answers

Git: does ffwd merge preserves all topic branch commits?

Say we have this situation: master | A--B--B--D--E--F--G | test Then we merge test into master. Are commits E and F preserved in the new master branch? That is, does it now lok like this (option…
Martin
  • 1,276
  • 1
  • 10
  • 13
1
vote
1 answer

How can I preserve spaces in user input for bat scripts?

I have a bat script to dump a list of user names and their display name from Active Directory. It works great until a group we need to dump names from a group that has a space. @echo off Set /p GROUP="Group Name: " echo This window will close when…
FirehaK
  • 43
  • 2
  • 6
0
votes
1 answer

how to preserve JavaScript variables while PayPal works?

i need some clarification please: the process is essentially as follow: client fills out form, hits 'continue' button and series of PDFs get generated based on data from form. i want to use PayPal right after the 'continue' button gets pressed. …
WhiteRau
  • 818
  • 14
  • 32
0
votes
2 answers

Return Array All Values

Would appreciate any guidance in understanding why the following code only returns the last value of an array. I and trying to return the file name of all open Workbooks then select whatever Workbook based on its Array index. The following code…
0
votes
1 answer

React - Preserve state between tables that communicate with each other [datagrid]

I have a problem in React with TypeScript using the Material UI library, related to the preservation of the state of two datagrids that affect their states bilaterally after a page refresh. Goal Have a datagrid/table where rows are selected (which…
0
votes
1 answer

Access a VideoPlayer of another scene to use VideoPlayer.Prepare()

I'm learning Unity and I have to improve the transition between a sequence of scenes which each has a GameObject called VideoManager and each of those has a VideoPlayer. I have thought use VideoPlayer.Prepare() to pre-load the next VideoPlayer of…
0
votes
1 answer

Sorting cells by colour and putting their address into an Array

I want to put the values from cells with background colour that are different from -4142, in an array so that later I can insert those values in a dropdown list. I found code in the answer of this question: Appending a dynamic array in VBA. I…
0
votes
1 answer

Pandas: How to find minimal value in a column based on pair of values from 2 other columns, keeping the order of rows as in the initial dataframe?

I have the following dataset: df NUTS_ID_from ID_inter_start ID_inter_end NUTS_ID_to Total_cost 0 DE111 DEA12 DE403 DE111 1886.332 1 DE111 DEA12 …
Andrei
  • 69
  • 6
0
votes
1 answer

Another "preserve reference" XmlSerializer issue

I´m working on a "new language" (not such ambitious) XML definition, I want to have the option to work with object graph vía xml (serializing/deserializing) and API at same time. public class Project { public List Connections { get;…
RURIA
  • 59
  • 4
0
votes
3 answers

Republish Docker Image with Preserved Digest to Different Registry

I pull images from public registries such as DockerHub, and push them to a singular private registry. This is a simple process for images in the format of image:tag but not so for those of image@digest. I want to re-publish, or push in Docker's…
Dbercules
  • 629
  • 1
  • 9
  • 26
0
votes
1 answer

preserve header when adding another worddocument without header

i use vba in wordfile A to add a word file B to the end of file A. File A has a header(Kopfzeile), file B does not have this. When B is added in the end of A, all the headers in A are gone, but what i want is that the header of A is also on the…
0
votes
1 answer

Xamarin Linker - App crashes unless Linker is set to "Don't Link" but IPA is too big for App Store

Our Xamarin app will crash unless the linker is set to "Don't link" - however this creates an archive that is too big for the app store/TestFlight limits. We use the Microsoft.Azure.cosmos NuGet package and the linker seems to be removing it on the…
0
votes
1 answer

Is $s necessary when implementing a function that swaps while looping through a loop in MIPS?

void sort (int v[], int n) { int i, j; for (i = 0; i=0; && v[j]>v[j+1]; j-=1){ swap(v,j); } } } void swap(int v[], int k) { int temp; temp =…
user9178840
0
votes
1 answer

How to unwrap spans with empty class-Names assign ?

Does anybody has an idea to remove the TEST with jquery or javascript? The innerHTML hier "TEST" shall be preserved. Looks easy but i didn't find an easy way.
multiN
  • 13
  • 3
0
votes
1 answer

How do i preserve form input - after submiting form with dynamic menu list ?? Zend framework

Im trying to preserve the user inputs from dynamic menu dropdown lists - I have an number of drowpdowns and a user input text field , when the user submits the form after selecting the options from the dropdowns. I would like to be able to preserve…
Ledgemonkey
  • 7,223
  • 12
  • 36
  • 56