Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for recoverable (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    		// 2. Delete the object from storage.
    		// If the update succeeds, but the delete fails (network error, internal storage error, etc.),
    		// a resource was previously left in a state that was non-recoverable.  We
    		// check if the existing stored resource has a grace period as 0 and if so
    		// attempt to delete immediately in order to recover from this scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  2. src/time/sleep.go

    //
    // Before Go 1.23, the garbage collector did not recover
    // timers that had not yet expired or been stopped, so code often
    // immediately deferred t.Stop after calling NewTimer, to make
    // the timer recoverable when it was no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // timers, even if they haven't expired or been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessorTest.groovy

            1 * workerProcess.stopNow()
            _ * workerProcess.waitForStop() >> { throw new ExecException("waitForStop can throw") }
            notThrown(ExecException)
        }
    
        def "captures and rethrows unrecoverable exceptions thrown by the connection"() {
            def handler
            def processor = newProcessor()
    
            when:
            processor.processTestClass(Mock(TestClassRunInfo))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFatalException.java

     */
    public class CompilationFatalException extends RuntimeException implements CompilationFailedIndicator {
    
        public CompilationFatalException(Throwable cause) {
            super("Unrecoverable compilation error: " + cause.getMessage(), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/format.go

    // - a table storing execution count for the coverable units in each func
    type pstate struct {
    	// slice of unique functions
    	funcs []fnfile
    	// maps function to index in slice above (index acts as function ID)
    	funcTable map[fnfile]uint32
    
    	// A table storing coverage counts for each coverable unit.
    	unitTable map[extcu]uint32
    }
    
    // extcu encapsulates a coverable unit within some function.
    type extcu struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnection.java

        void stop();
    
        /**
         * Indicate that the execution containing this {@code ObjectConnection} has been prematurely stopped.
         */
        void abort();
    
        /**
         * Add a callback upon unrecoverable errors, e.g. broken connection. Should not throw any exceptions because
         * this is the last line of defense.
         * @param handler the callback
         */
        void addUnrecoverableErrorHandler(Action<Throwable> handler);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/lazy.go

    type lazyObject struct {
    	loader func() (RESTMapper, error)
    
    	lock   sync.Mutex
    	loaded bool
    	err    error
    	mapper RESTMapper
    }
    
    // NewLazyRESTMapperLoader handles unrecoverable errors when creating a RESTMapper / ObjectTyper by
    // returning those initialization errors when the interface methods are invoked. This defers the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnection.java

                        try {
                            handler.execute(current);
                        } catch (Throwable e) {
                            current = new DefaultMultiCauseException("Error in unrecoverable error handler: " + handler, e, throwable);
                        }
                    }
                }
            };
            this.hub = new MessageHub(completion.toString(), executorFactory, errorHandler);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/internal/fuzz/mem.go

    	randState, randInc uint64
    
    	// rawInMem is true if the region holds raw bytes, which occurs during
    	// minimization. If true after the worker fails during minimization, this
    	// indicates that an unrecoverable error occurred, and the region can be
    	// used to retrieve the raw bytes that caused the error.
    	rawInMem bool
    }
    
    // sharedMemSize returns the size needed for a shared memory buffer that can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse.go

    	walkValues := []*Value{}
    	for _, v := range b.Values {
    		if v.Uses == 0 && v.removeable() {
    			walkValues = append(walkValues, v)
    		}
    	}
    	for len(walkValues) != 0 {
    		v := walkValues[len(walkValues)-1]
    		walkValues = walkValues[:len(walkValues)-1]
    		if v.Uses == 0 && v.removeable() {
    			walkValues = append(walkValues, v.Args...)
    			v.reset(OpInvalid)
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top