Questions tagged [propagation]
240 questions
5
votes
2 answers
DNS propagation - why is a subdomain only accessible minutes after it's creation (own nameservers)
we have a question about the behavior of DNS propagation for subdomains.
Here's the scenario we are trying to achieve:
User1 registers at our site "company.com". A subdomain "user1.company.com" is automatically created, not as add-on domain of…

Gulnor
- 53
- 1
- 4
5
votes
4 answers
Fresnel diffraction in two steps
I wrote a short matlab script file that is suppose to run Fresnel's propagation (diffraction), such that given a certain input field U0, it will tell you how the field looks after distance z0. I compared the result to textbook results, and it seems…

user1627734
- 53
- 1
- 2
- 4
4
votes
1 answer
Java ArrayList contents not propagating
My code runs an algorithm on an array, and stores the results in an ArrayList. The problem is that I am not able to access the contents of the ArrayList for subsequent processing. Though my actual code is thousands of lines long, I have trapped…

CodeMed
- 9,527
- 70
- 212
- 364
4
votes
1 answer
propagate calculation along pandas dataframe rows
I need to propagate a calculation (for example a delay) along pandas dataframe rows.
I found a solution which uses .iterrows() method and is very slow, so I was wondering if there's a vectorized solution for this problem since my data is huge.
Here…

user1403546
- 1,680
- 4
- 22
- 43
4
votes
1 answer
Spring Transaction Propagation on Class to Class level and Method to Method Level
How Spring Transaction Propagation works for PROPAGATION_REQUIRED and PROPAGATION_REQUIRES_NEW?
Please provide info regarding this propagation on class to class level and method to method level.
I also need to know how these transaction are…

Milan Kamboya
- 486
- 2
- 11
4
votes
2 answers
Propagate primary key to child tables
I want to propagate the value of a primary key column from a parent table to a specific child table when inserting a new row.
For explanatory purposes I've created following tables:
Create TABLE Material(
MatID serial PRIMARY KEY,
materialname…

Dede1989
- 53
- 1
- 8
4
votes
1 answer
spring transaction management Propagation.REQUIRES_NEW not working
My Service Class.
@Service
@Transactional(value = "transactionManager", readOnly = true, propagation = Propagation.REQUIRED)
public class DeviceServiceImpl{
@Transactional(readOnly = false)
public void blockAllDevices(){
…

Dinesh Appuhami
- 710
- 1
- 11
- 24
4
votes
3 answers
Rollback all nested transactions when outer one is marked for rollback
I've got two methods annotated with @Transactional. The second method is called somewhere nested inside the first one.
Now I want the following behaviour to happen:
Every time the second, nested method is entered, a new nested
transaction should be…
user321068
3
votes
1 answer
CLP(FD) variable domains & propagation
In my Prolog course the past semester, I fell a little behind around the time CLP was introduced. Now I'm trying to catch up, and have tried my hand at a past exam that the professor supplied to all students.
In particular, there was this…

Drubbels
- 327
- 2
- 4
- 11
3
votes
1 answer
Adding onclick event to td, but should not fire on links within
I have this:
$('table.data td').click(function() {
}
But the problem is this also fires when I click on links within that column. How can I prevent that?
Tried something like table.data td :not(a) but that doesn't seem to work at…
user429620
3
votes
1 answer
Consequences in Z3
Z3 is able to derive boolean consequences of the theory as explained in https://theory.stanford.edu/~nikolaj/programmingz3.html#sec-consequences
Now I am wondering whether it is possible to also do this for numeric values.
For instance given the…

Ingdas
- 1,446
- 1
- 11
- 21
3
votes
1 answer
Google Sheets - propagate column date formatting to new rows
The date format in the column is not propagating to new rows, whenever new rows are being added to the bottom of the sheet. The column formatting is not automatically applied - this in regards to date, currency format, alignment etc.

Ricardo
- 105
- 1
- 7
3
votes
3 answers
Is there any other role of throws instead of propagating a checked Exception?
After studying more and more about throws statement in Exception Handling I am getting confused.I found-
If a method is capable of causing an exception that it does not
handle, it must specify this behavior so that callers of the method
can…

TheCurious
- 593
- 1
- 4
- 29
3
votes
1 answer
Oracle advanced queue propagation not working for me
I'd like to set up propagation in Oracle AQ (11).
I'd like to propagate from queue "Q" in queue table "QT" to queue "QD" in queue table "QTD".
This is my setup:
DECLARE
subscriber sys.aq$_agent;
BEGIN
…

riskop
- 1,693
- 1
- 16
- 34
3
votes
1 answer
Stop click propagation on a specific parent
I have a problem with a click propagation event.
let say, I have a situation like this in a table:
when I click on the span, the click is propagated to the parent. I would like the click to be…
some text

Pierre Le Dantec
- 39
- 3