A process of keeping a particular fragment from entity while replacing the rest of it.
Questions tagged [preserve]
136 questions
0
votes
1 answer
Icecast behind Apache proxy setup - How to preserve the original listener IP
I have an icacast-kh server running on port 8000 behind apache proxy.
On Icecast admin page in listeners stats, I can't see the original IP listener.
I have followed a few tutorials on how to preserve the original IP when using Apache, but for some…

mr.d
- 386
- 4
- 18
0
votes
0 answers
Add items to an array rather than replacing
I have some code which uses arrays to get data from one worksheet (Cost Data) and essentially copy it to another worksheet (Compare Tool) in a side-by-side, comparison format. I got everything to work only to find out that in some cases, there are…

excelman4000
- 1
- 1
0
votes
0 answers
Preserve headers in Angular application
I'm developing an architecture where my Angular front end connected to a Spring Boot back end and the front end is accessible via NGINX.
Before accessing to my application, the user must be authenticated.
I use Keycloak as Identity manager and…

Mnl_bk
- 1
- 2
0
votes
1 answer
Use dplyr to summarize but preserve date of group row
I have a data frame like the following:
Date Flare Painmed_Use
1 2015-12-01 0 0
2 2015-12-02 0 0
3 2015-12-03 0 0
4 2015-12-04 0 0
5 2015-12-05 0 0
6 …

user1895891
- 125
- 1
- 5
0
votes
1 answer
I want to persist/preserve login in all spec files instead of logging in again and again for every file
I want to persist/preserve login in all spec files instead of logging again and again for every file: I found solution for multiple tests is a single file but I need solution for multiple tests for multiple specs files
Save local storage across…

Kashif nadeem
- 161
- 1
- 4
- 12
0
votes
2 answers
string processing with xsl:apply-templates
I have a xml that looks like this,
Running text with marked up entities like
Entity1
and, text in the middle too, and
Entity2
I have to preserve the line breaks and indentation when…

user706213
- 33
- 5
0
votes
0 answers
Client IP is not preserved, instead it is showing weave network ip
I have a master and Node in Kubernetes. I tried to create POD with Node Port and also with ExternalIPs as Service Type. In both cases, I am not getting my client IP, which is sending requests to the application which is running inside the pod.
How…

Srivalli Ganesh
- 1
- 1
0
votes
3 answers
using "ls" and preserving the spaces in the resulting array
I am trying to read a directory with "ls" and do operations on it
directory example:
$ ls -1
x x
y y
z z
script file: myScript.sh
#!/bin/bash
files=(`ls -1`);
for ((i=0; i<"${#files[@]}"; i+=1 )); do
echo "${files[$i]}"
done
however, the…

Wayne Dawson
- 31
- 6
0
votes
2 answers
Is it possible to provide an ordering guarantee for a collection?
I'm trying to create a method which (other than in name) shows that the ordering of some collection will be preserved.
I have considered SortedList, but dismissed it due to the requirement of holding a key. I have also dismissed other Sorted types…

Stevey
- 117
- 9
0
votes
1 answer
Provide way to specify field order in $project on using mongoDB
I am trying to extract documents from Mongo DB based on field 'Type' with specific order in the results. Results are retrieved correctly, but the results are not preserving the fields order which is given in the query.
I have included the working…

Prasanth
- 15
- 7
0
votes
1 answer
Preserve line breaks when Removing Bookmarked Lines
I have a large text file with several lines and I want to replace several of those lines with a blank line. I used regex to search for certain patterns, marked and bookmarked them, then used:Search > Bookmark > Inverse Bookmark to hopefully…

JAT86
- 997
- 12
- 24
0
votes
0 answers
How can I preserve the log upon a new tab
In Google Chrome is it possible to preserve the log onto a new tab when opened?
I know the preserve log option will save the logs text upon navigation, but I want to make it so the log is copied over to the new tab so each new tab will have the same…
user9737337
0
votes
0 answers
How can I segment a data array while preserving the original, global coordinate system of each segment?
I have a matrix that I'm simply trying to segment into equal size patches, while also preserving the coordinate system of each (from their original place in the data file). I need to be able to segment them and then index points on each segment that…

ees
- 327
- 1
- 17
0
votes
1 answer
Preserve underscore in FileName - Mozilla Firefox
I am trying to rename the downloaded files from ssrs in firefox. The default name is the actual filename.pdf or some other available options.I have made some changes to ReportServer.js file to fix the default name of the downloaded files. It is…

user3596666
- 11
- 3
0
votes
2 answers
complete data og left table other then join connection
my left table data is "Message"
id advid seller_id purchase _id delete_status
15 93 28 19 yes
22 134 34 19 yes
25 168 15 …
user2743706