Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for recoverable (0.3 sec)

  1. pkg/registry/core/service/portallocator/controller/repair.go

    func (c *Repair) runOnce() error {
    	return retry.RetryOnConflict(retry.DefaultBackoff, func() error {
    		err := c.doRunOnce()
    		if err != nil {
    			nodePortRepairReconcileErrors.Inc()
    		}
    		return err
    	})
    }
    
    // doRunOnce verifies the state of the port allocations and returns an error if an unrecoverable problem occurs.
    func (c *Repair) doRunOnce() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repair.go

    func (c *Repair) runOnce() error {
    	return retry.RetryOnConflict(retry.DefaultBackoff, func() error {
    		err := c.doRunOnce()
    		if err != nil {
    			clusterIPRepairReconcileErrors.Inc()
    		}
    		return err
    	})
    }
    
    // doRunOnce verifies the state of the cluster IP allocations and returns an error if an unrecoverable problem occurs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

                    // If we delete anything from the distribution before deleting the OK file, the
                    // wrapper will attempt to use the distribution as-is and fail in strange and unrecoverable
                    // ways.
                    File[] markerFiles = checksumDir.listFiles((dir, name) -> name.endsWith(".ok"));
                    boolean canBeDeleted = true;
                    if (markerFiles!=null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/runtime/panic.go

    	// readable.
    	//
    	// TODO(aktau): Handle a panic from within traceAdvance more gracefully.
    	// Currently it would hang. Not handled now because it is very unlikely, and
    	// already unrecoverable.
    	if traceEnabled() {
    		traceAdvance(false)
    	}
    
    	// ran out of deferred calls - old-school panic now
    	// Because it is unsafe to call arbitrary user code after freezing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       *     the {@link ExecutionException} thrown by {@code input.get()} or, if {@code get()} throws a
       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if the input fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

            public void execute(Throwable throwable) {
                try {
                    final PrintStream ps = new PrintStream(errorLog);
                    try {
                        ps.println("Encountered unrecoverable error:");
                        throwable.printStackTrace(ps);
                    } finally {
                        ps.close();
                    }
                } catch (FileNotFoundException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/FluentFuture.java

       *     the {@link ExecutionException} thrown by {@code input.get()} or, if {@code get()} throws a
       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if the input fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/value.go

    	return v.Op == OpVarDef || v.Op == OpVarLive || v.Op == OpPhi ||
    		(v.Op == OpFwdRef || v.Op == OpCopy) && v.Type == types.TypeMem
    }
    
    // removeable reports whether the value v can be removed from the SSA graph entirely
    // if its use count drops to 0.
    func (v *Value) removeable() bool {
    	if v.Type.IsVoid() {
    		// Void ops (inline marks), must stay.
    		return false
    	}
    	if opcodeTable[v.Op].nilCheck {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/repairip.go

    	<-stopCh
    }
    
    // runOnce verifies the state of the ClusterIP allocations and returns an error if an unrecoverable problem occurs.
    func (r *RepairIPAddress) runOnce() error {
    	return retry.RetryOnConflict(retry.DefaultBackoff, r.doRunOnce)
    }
    
    // doRunOnce verifies the state of the ClusterIP allocations and returns an error if an unrecoverable problem occurs.
    func (r *RepairIPAddress) doRunOnce() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                compileClasspathLoader.shutdown();
                CompositeStoppable.stoppable(classPathLoader, astTransformClassLoader).stop();
            }
        }
    
        /**
         * Returns true if the exception is fatal, unrecoverable for the incremental compilation. Example of such error:
         * <pre>
         * error: startup failed:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top