Questions tagged [propagation]
240 questions
1
vote
2 answers
Boost Spirit auto-rule problem
I'm using attribute propagation to construct a syntax tree for a toy language. I've hit a problem at the definition of my if statement, it's hard to tell from the error message but I think the rhs attribute isn't collapsing into the expected…

Dave
- 11
- 2
1
vote
2 answers
Are objects in Openstack Swift immediately available?
OpenStack Swift allows replicates and distributes objects in multiple locations over a cluster.
Is it guaranteed that after a successful PUT operation, i can immediately GET the object or do I have to wait for the object to propagate over the…

enrico.bacis
- 30,497
- 10
- 86
- 115
1
vote
1 answer
Propagation_requires_new rollbacks suspended transaction
I have following code
@Service
public class EmployeeService {
EmployeeService employeeService; //to test different behavior
@PersistenceContext
EntityManager entityManager;
@Transactional(propagation = Propagation.REQUIRED)
public void…

eatSleepCode
- 4,427
- 7
- 44
- 93
1
vote
1 answer
Overriding transactional Annotation Spring + hibernate
I have this DAO:
@Transactional("transactionManager")
public class DAO{
public void save(String a){...}
}
I have this class:
public class test{
...
@Transactional(rollbackFor = Exception.class, propagation = Propagation.REQUIRES_NEW)
…

mel3kings
- 8,857
- 3
- 60
- 68
1
vote
2 answers
Propgate changes from base image to "child" image, Docker
I am using docker and I was wondering if it was possible to propogate changes to "child" images of a base image. The following sequence of actions should hopefully give a more clear picture as to what I mean.
docker run -i -t baseimage …

Zack
- 13,454
- 24
- 75
- 113
1
vote
2 answers
SAT with two clauses is polynomial
What is the complexity of a SAT instance with k unary clauses and only two clauses ?
I would like to find a paper with this result .. I found one paper in which the problem is a little bit different. All variables appears at most twice ...

Gaëlle Hisler
- 21
- 2
1
vote
1 answer
The annotation Propagation.NEVER doesn't work
Programmers! I don't understand how doeas the propagation attribute work in the @Transactional annotation. Please, help)

Konstantin B.
- 485
- 1
- 5
- 16
1
vote
1 answer
jQuery propogation issue with WordPress menus
I am having an issue stopping propogration of jQuery with WordPress submenus.
Here is my script:
$("#menu-item-302900 a").click(function(){
$.get('/?deletecookie', function() {
window.location.href =…

Zach Nicodemous
- 9,097
- 9
- 45
- 68
1
vote
1 answer
Propogation of _metadata from DataFrame to Series
I want to be able to store 'units' information for each column of a DataFrame and have the following code (uisng pandas v 0.14.1):
import pandas as pd
import numpy as np
import copy
# Monkey path Series:
pd.Series._metadata.append('units')
# Test…

user1515250
- 85
- 1
- 5
1
vote
0 answers
Propagate Reference dependencies between projects
here the situation: I work under VS2013, I have a Silverlight solution named "MySolution" and in that solution I have a certain number of projects.
MySolution
Commons
Project 1
Project 2
Project 3
...
Each project has into its References the…

user2711923
- 19
- 3
1
vote
0 answers
Sharepoint 2013 Provisioning App part doesn't work with page propagation
I have been using Sharepoint 2013 and I need a multi-language site (English and French). I'm having issue to provision App Parts in my default layout. Here is the elements.xml of my layouts :

user2241585
- 21
- 2
1
vote
1 answer
Data structures for tracking changes to object identifiers
I need to implement a system for tracking changes to unique numerical object identifiers. The environment that the system will operate in is very restrictive so all of the convenient enterprise class RDBMS methods of approaching the problem are off…

mwilloughby32
- 11
- 2
1
vote
1 answer
Angular data propagation through scope tree with controllers
I'm in the process of learning Angular, and have come across a bit of a problem. I'm trying to create a set of directives that represent different levels within a javascript object. The object contains a number of different properties that depend on…

AaronF
- 2,841
- 3
- 22
- 32
1
vote
0 answers
Synchronizing multiple SOLR instances
I have weird requirement:
It is not possible to set up dedicated SOLR servers in my environment, they have to be embedded in JVMs running tomcat instances. It works perfect for single server - But I have multiple load balanced servers sharing…

Konstantin Pribluda
- 12,329
- 1
- 30
- 35
1
vote
1 answer
SSIS prevent warnings from propagating
I've got a script running in a Foreach Loop Container, inside my package's Control Flow.
In the script, I am throwing a warning, then exiting with success
Dts.Events.FireWarning(-1, "", "warning message here", "", 0);
Dts.TaskResult =…

adam
- 2,930
- 7
- 54
- 89