fault Questions

6

Solved

I have started to work with project, which I cloned from bitbucket. I use as Git Bash, as SourceTree. I changed one file and try to commit my change. I can execute the command "add", but when I tr...
Flori asked 15/6, 2017 at 13:57

3

Solved

I am reading Spring Cloud and NetFlix APIs. Many places, I read Fault Tolerance and Fault Resilience keyword. Please explain the difference.
Holiday asked 8/9, 2017 at 4:37

5

Solved

My app uses Core Data (with some help of Magical Record) and is rather heavily multithreaded using NSOperation. Of course I am very careful to only pass around NSManagedObjectID between threads/op...
Gail asked 26/12, 2011 at 16:27

6

Solved

How can a Windows application handle segmentation faults? By 'handle' I mean intercept them and perhaps output a descriptive message. Also, the ability to recover from them would be nice too, but I...
Lunisolar asked 2/1, 2010 at 20:56

3

Solved

I am consuming a web services. Some methods throw exception when i invoked, because the parameters are invalid values, for example. I want to handle the exceptions but it don't contains any data in...
Il asked 1/12, 2014 at 19:19

3

Solved

I have a client server application. My scenario: .Net Framework 4.6.1 Quad Core i7 machine with hyperthreading enabled Server CPU load from 20 - 70 % Network load < 5% (GBit NIC) 100 users 30 ...
Apprehensible asked 11/1, 2019 at 8:4

2

Say I have an Entity 'Employee' with a to-many relationship 'departments' to another entity 'Department'. If I have an instance of an Employee object and the departments collection is currently a f...
Coeliac asked 6/8, 2011 at 18:10

6

Solved

I just updated to Node 4. When I run Gulp, I see: Segmentation fault: 11 My includes: var gulp = require('gulp'); var jscs = require('gulp-jscs'); var concat = require('gulp-concat'); var u...
Forgery asked 9/9, 2015 at 2:34

4

Solved

What's more efficient? Throwing an exception or throwing a fault... the way I see it is that there's 2 scenarios: An exception occurred and is caught, do you throw that existing Exception or crea...
Headlong asked 19/5, 2011 at 16:46

5

I am trying to catch a given FaultException on a WCF client. I basically need to extract a inner description from the fault class so that I can then package it in another exception for the upper la...
Phobia asked 8/9, 2010 at 16:38

2

I have a orchestration which is receive a request from local rest service then send request to another remote Rest Service then if the remote service returns a response successfully with 200 HTTP c...
Trabzon asked 24/7, 2015 at 14:28

3

I am trying to raise a Suds.WebFault from python code. The __init__ method\constructor takes three arguments __init__(self, fault, document). The fault has fault.faultcode and fault.detail members\...
Macneil asked 13/4, 2011 at 15:19

3

Solved

My basic understanding of software fault injection is as follows: One can't run all possible tests to test a software. So one resorts to make modifications in the code and analyzing the degree of ...
Sorbose asked 26/1, 2014 at 14:31

5

Solved

I've always had this issue so I started creating a new single-view application, in Swift, for both iPhone and iPad. When the target is iOS 8.1 everything works fine, but if I set iOS 7.1 (or 7), i ...
Compliance asked 4/11, 2014 at 9:5

1

I'm working on an application based on Core Data. I'm doing a fetch on Item. I don't want the fetched objects to be fault when returned because I'm sure they will be accessed immediately. Thus, I s...
Freeboot asked 11/12, 2013 at 10:21

2

Solved

There is an object A and an Object B. Object B has one attribute that is type transformable (image), and one relationship, which is to an object A. Object A may have a relationship to one, and only...

3

I'm trying to get this c code: main() {int x, y, count ; count = 0 ; x = 10 ; y = 2 ; while (y < x) { x = x + 1 ; y = y + 2 ; count = count + 1 ; } printf(“ It took %d iterations...
Gaelic asked 29/4, 2015 at 22:11

4

So the error is: PHP Fatal error: Procedure 'sup:set_availability' not present in XMLSoapServer.php I am receiving this error on my development environment (MAMP). This is caused by an invalid X...
Gibbie asked 30/4, 2014 at 20:12

2

When I first populate a view I do this: self.cats = [[DataManager sharedManager] getCatsFromCoreData]; //cats is an NSArray property (strong) for (Cat* cat in self.cats) { CatThumbnailView *thum...
Approximate asked 17/9, 2013 at 19:48

3

Solved

I'm scratching my head over this: Using an Interceptor to check a few SOAP headers, how can I abort the interceptor chain but still respond with an error to the user? Throwing a Fault works regard...
Octoroon asked 29/11, 2011 at 19:12

1

Solved

I'm trying to port edac module into kernel and get the following error: > insmod /lib/modules/2.6.34.12/kernel/drivers/edac/edac_core.ko insmod: error inserting '/lib/modules/2.6.34.12/kernel/d...
Nahshon asked 29/10, 2013 at 15:23

2

Solved

Background - Batch unfaulting: NSFetchRequest allows batch unfault - for example, use a query of 1000 results, it would bring all as faults, then it would unfault X objects at a time (i.e. index 0-...
Anthropology asked 18/6, 2013 at 8:34

3

I am trying to add more information regarding a SOAP fault in a open source client application. The client is setup to call "HandleFault" whenever it encounters any SOAP fault. The Handle Fault met...
Contemplation asked 13/6, 2013 at 21:56

3

Solved

Let's say we have two entities in a Core Data model: Departments and Employees. The Department has a one-to-many relationship to Employees. I have the following ManagedObjectContexts: - Root: conn...
Bilski asked 14/4, 2013 at 14:4

3

Solved

Code: NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; NSEntityDescription *entity = [NSEntityDescription entityForName:@"A" inManagedObjectContext:moc]; [fetchRequest setEntity:ent...
Molokai asked 30/1, 2010 at 20:4

© 2022 - 2024 — McMap. All rights reserved.