The isolation tag has no wiki summary.
0
votes
1answer
26 views
Cassandra atomicity/isolation guarantee in repair modes
I know that Cassandra offers atomicity and isolation for batch mutations on row-level basis since version 1.1 (http://www.datastax.com/dev/blog/row-level-isolation)
But do these guarantees also hold ...
1
vote
2answers
29 views
Bypass windows session isolation, display warning message in user session from system service, windows 7+
I am looking to implement a feature when an application running as a windows service (as localsystem) will display a modal warning, something similar to a shutdown screen or UAC warning screen. ...
0
votes
2answers
18 views
PHP Script Execution and Static Variable Isolation
I have a fairly basic PHP question that I don't seem to be able to find an answer to. When a user visits a website that executes a PHP script, is that script run in isolation from all other running ...
0
votes
2answers
49 views
MySQL transactions and concurrent inserts
I've got this script made by someone and I looked over it and found something I'm not sure is safe:
Inside a transaction there are 2 consecutive inserts, in 2 different tables, both with auto ...
0
votes
1answer
31 views
how can i set isolation level with propel?
i use mysql, php on propel.
i have used transaction row lock on mysql with native SQL query(e.g. SELECT FOR UPDATE).
and now , I'm using
propel
to use ORM.
but propel is not support row lock by
...
2
votes
1answer
68 views
Pin processor CPU Isolation on Windows
In linux where I work mostly, we use a technique called CPU isolation, that effectively locks a process on to a processor and also prevents the processor from running anything else. Our kernel guys ...
4
votes
4answers
170 views
How can i isolate Razor Views?
Is there a way to expose Razor syntax and (custom) helpers to people , but say ... not allow them to create code blocks or , to only limit them in the usage of the helpers and to not give them the ...
1
vote
2answers
54 views
How to isolate java module execution in a seperated thread/classloader?
In my webservice application I have to integrate a third party module to validate business rules, these modules are shipped with rather old libraries.
The old libraries are in conflict with my newer ...
0
votes
1answer
56 views
Call dll in safe mode
In my project i need to call many third-party apps. I am searching for a way for call that part in a safe way.
If i call those in separate process i can isolate my main application from third-party ...
1
vote
1answer
58 views
What happened to Java MVMs?
These are Multitasking Virtual Machines with very nice, high level (i.e. language level) isolation between untrusting components. The information I could find about them all dates back to around 2006
...
2
votes
1answer
140 views
java.sql.Connection Isolation Level
I am writing some spike code that isn't giving me the the results I am expecting.
I have a table that is basically rows of counters. Other tables use these rows to generate what should be unique ...
1
vote
1answer
113 views
cgroups isolation (separating groups processes)
i have a question regarding cgroups, especially considering isolation.
Wikipedia states, that you can use cgroups to isolate groups, so that there are "separate namespaces for groups, so they don't ...
0
votes
0answers
136 views
SQL Server / T-SQL semaphores
Is there a some thing in T-SQL like semaphores? I am using transaction isolation level (READ COMMITTED | REPEATABLE READ | SNAPSHOT | SERIALIZABLE) and locks (tablocks, HOLDLOCK)
I am not getting the ...
0
votes
0answers
30 views
Tenant Isolation with WebParts
I'm trying to write a multi-tenant application for Azure that acts as a dashboard where people can build community portals, and add widgets that will feed them information.
I was hoping to use ...
1
vote
3answers
162 views
Mysql InnoDB row locking from read
I have read mysql documentation and maybe I just don't understand it all. What I'm looking for is the row locking from reading for other sessions. While the row is locked I would like the other ...
1
vote
3answers
63 views
Architecture Isolation mechanisms
We are currently reviewing how to isolate our core business components (in the code) from the front end development. We already have multi-tier architecture but they are referenced using dll (or ...
1
vote
0answers
121 views
How to really isolate stylesheets in the Google Chrome extension?
I wrote google chrome extension, which popups dialog with autocomplete field and it's own style, but there is some of sites where my CSS become totaly broken which isn't looks very nice.
I know about ...
0
votes
0answers
70 views
OSGi Bundle Permissions on Geronimo
I am about to make a enterprise cloud OSGi web-service by using Apache Geronimo V3.0.
The final goal is to make custom BundleManager(maybe it is a bundle too) that can do simple bundle action like ...
0
votes
1answer
1k views
ShimNotSupportedException in MS VisualStudio 2012
I'm just trying to get familiar with the new Fakes Isolation Framework in Visual Studio 2012 RC but I'm consequently facing issues with ShimNotSupportedExceptions.
At the first tries, each single shim ...
1
vote
1answer
139 views
Using Rails model that is already declared
Declaring a class for (fast) testing purposes is great:
require 'fast_helper'
require 'site_search'
class Post; end # This allows not to load the whole Rails env
describe SiteSearch do
it ...
0
votes
0answers
155 views
Unity Image pixel isolation
After noon i have been asked by a client to create an aspect of an app that is in development. I need to be able to isolate pixel clusters on a back drop for example i need to be able to isolate ...
4
votes
4answers
320 views
Isolate execution of JavaScript
One of the limitation of JS that bugs me the most is the poor ability to isolate code's execution.
I want to be able to control the context in which the code is executed, Something that achieve a ...
-1
votes
1answer
218 views
ISOLATION LEVEL in DB2
Questions:
1.) Does their is an ISOLATION level in DB2 at database level ?
2.) What is the default ISOLATION LEVEL in DB2 at database level Database ?
3.) How can we change the ISOLATION LEVEL in DB2 ...
1
vote
1answer
75 views
How to provide isolation?
I have a need to allow my users to execute .NET code that they provide on my server. I know security is a big concern, but it has to be done that way.
Currently, I run my users' code under a limited ...
0
votes
1answer
340 views
Properly testing an API wrapper for Recurly
I'm thinking about the way that I can test this class, its interface only exposes two methods, add_property and remove_property which just wrap the Recurly API.
class SubscriptionManager
def ...
2
votes
1answer
660 views
Typemock vs Moq [closed]
I have heard/read a little about both of these frameworks and have decided I want to use of of the two. Which is better? Why?
Thanks in advance!
Oshiwoshydopaliscious
0
votes
1answer
184 views
Does Mongo ensure isolation when updating single documents?
The Mongo documentation on atomicity and isolation is a tad vague and slightly confusing. I have this document structure and I want to ensure mongo will handle updates while isolating updated from ...
0
votes
1answer
276 views
repeatable read and second lost updates issue
With repeatable read isolation level, it is still possible to lose updates (second lost updates problem). E.g. in the scenario with isolation level set to RR:
1) transaction t1 reads data from row ...
1
vote
2answers
371 views
AppDomain.DoCallBack requires ReflectionPermission?
I have this class, instance of which I create in an AppDomain with no permissions but SecurityPermissionFlag.Execute:
class IsolationEntryPoint : MarshalByRefObject
{
// main is the original ...
2
votes
2answers
123 views
Is it possible to execute uploaded .NET code in an isolated environment?
In a .NET web site I need to get code submitted by users, compile it and execute it. But I need code to be executed in an isolated environment so that no malicious code can harm my system (for ...
25
votes
5answers
8k views
Spring @Transactional - isolation, propagation
Can someone explain what isolation & propagation parameters are for in the @Transactional annotation via real world example. Basically when and why I should choose to change their default values.
...
2
votes
2answers
319 views
SQLite: select results affected by subsequent insert
I am developing an application in which I am iterating over many (1,000,000+) rows in a table while inserting new rows and updating existing rows along the way. It is a requirement that the select ...
0
votes
1answer
222 views
How do I isolate unmanaged code crash in .Net Process
.Net Console Application depends on COM objects that tend to crash from time to time in very unpredictable way. Application simply closes with no reason at all: no logs, no exceptions (catch block ...
0
votes
1answer
99 views
Memcached/other key-value engine isolation
I have a bunch of web servers(frontends) behind balancer. Each apache process runs with it's own user for every virtualhost. Code that apache runs is PHP and it's not trusted code.
I need to have ...
1
vote
1answer
70 views
Passing an MSMQ Queue handle through an AppDomain or Process boundary
Using AppDomain or possibly Process isolation in a .NET application, I don't necessarily want to give the isolated environment the permissions necessary to create or even open MSMQ MessageQueues. I ...
0
votes
1answer
53 views
Isolating specs to one specific call of a method
I am writing a spec for an object (Sample) that calls another object's method (IO#delete) a number of time.
I want to isolate the tests of this method, however when I do this:
class Sample
def ...
0
votes
1answer
271 views
Resolve concurency during updating table in Sybase
I have a procedure in Sybase with the following code.
begin transaction get_virtual_acc
UPDATE store_virtual_acc SET isProc = 1, Uid = @uid, DateReserv = getdate()
from store_virtual_acc ...
0
votes
1answer
109 views
how to troubleshoot intermittent junit test failures?
I am dealing with a case where my tests pass or fail based on the order of declaration. This of-course points to not properly isolated tests. But I am stumped about how to go about finding the issue.
...
0
votes
1answer
377 views
Network traffic isolation behavior of network switches
First-timer on Stack Overflow here. I'm surprised nobody seems to have asked this question, and I hope this is the right place to ask this. I'm trying to determine if I should expect regular network ...
1
vote
1answer
96 views
Running a unit test in isolation in PHP
I've created a basic unit test suite in PHP. It shows whether or not a test passed and the time it took to execute the test. It works great, but I've run into a problem and I'm not sure how to address ...
0
votes
1answer
157 views
appdomain load one com dll for multiple time and keep memory isolated
There is a COM DLL(VC6.0 ATL wizard built), I want to use appdomain's identities to impliment one process creates multiple appdomain,every one load this COM DLL and ensure everyone COM DLL to have ...
1
vote
1answer
345 views
Can I change isolation level in Oracle?
I'm writting a transaction in Oracle.
Can I change isolation level within this transaction for one select statement?
Now I have Read Commit, and I want within transaction change this once to ...
0
votes
2answers
311 views
Node.JS: Converting tcp to stdin/stdout
Node.JS seems limited in its ability to live-update code and in its ability to automatically isolate exceptions. Both of which are practically by default in Java.
One very effective way to ...
0
votes
2answers
140 views
Windows: Application Isolation for Testing Purposes
I once saw an application that seperates your application in a seperate environment; has a virtual memory and registry and filesystem. It is like application isolation, but would allow any operation ...
1
vote
3answers
367 views
Isolate part of url with php and then print it in html element
I am building a gallery in wordpress and I'm trying to grab a specific part of my url to echo into the id of a div.
This is my url:
http://www.url.com/gallery/truck-gallery-1
I want to isolate the ...
13
votes
4answers
948 views
How to achieve test isolation testing Oracle PL/SQL?
In Java projects, JUnit tests do a setup, test, teardown. Even when mocking out a real db using an in-memory db, you usually rollback the transaction or drop the db from memory and recreate it ...
1
vote
1answer
1k views
ERROR: duplicate key value violates unique constraint “xak1fact_dim_relationship”
I am getting the below error while deleting some rows and updating the table based on a condition from java. My database is PostgreSQL 8.4. Below is the error:
ERROR: duplicate key value violates ...
4
votes
4answers
461 views
Should separation between API and Implementation be total?
Separation between API design and their implementation is often recommended in large software implementations. But somewhere, they have to be reconnected (i.e., the implementation has to be ...
27
votes
2answers
582 views
Safe execution of untrusted Haskell code
I'm looking for a way to run an arbitrary Haskell code safely (or refuse to run unsafe code).
Must have:
module/function whitelist
timeout on execution
memory usage restriction
Capabilities I ...
0
votes
1answer
262 views
Isolation level not working in vb.net connecting to a SQL 2008 DB
I have a VB.net CF app connecting to a SQL 2008 server.
I'm trying to implement transactions but when i break my code at the start of a transaction certain read queries cannot be done on the table.
...

