Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for recovery (0.14 sec)

  1. src/runtime/callers_test.go

    			pcs := make([]uintptr, 20)
    			pcs = pcs[:runtime.Callers(0, pcs)]
    			if recover() == nil {
    				t.Fatal("did not panic")
    			}
    			testCallersEqual(t, pcs, want)
    		}()
    		if recover() == nil {
    			t.Fatal("did not panic")
    		}
    		panic(2)
    	}()
    	panic(1)
    }
    
    // Test that a defer after a successful recovery looks like it is called directly
    // from the function with the defers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    	gp := getg()
    
    	if !p.deferreturn {
    		if gp._panic != p {
    			throw("bad panic stack")
    		}
    
    		if p.recovered {
    			mcall(recovery) // does not return
    			throw("recovery failed")
    		}
    	}
    
    	// The assembler adjusts p.argp in wrapper functions that shouldn't
    	// be visible to recover(), so we need to restore it each iteration.
    	p.argp = add(p.startSP, sys.MinFrameSize)
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

          }
        }
      }
    
      /**
       * Report and attempt to recover from a failure to communicate with a server. Returns true if
       * `e` is recoverable, or false if the failure is permanent. Requests with a body can only
       * be recovered if the body is buffered or if the failure occurred before the request has been
       * sent.
       */
      private fun recover(
        e: IOException,
        call: RealCall,
        userRequest: Request,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. cni/README.md

        - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
        - creates service-account `istio-cni` with `ClusterRoleBinding` to allow gets on pods' info and delete/modifications for recovery.
    
    - `install-cni` container
        - copies `istio-cni` and `istio-iptables` to `/opt/cni/bin`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/EventListener.kt

        proxy: Proxy,
        protocol: Protocol?,
      ) {
      }
    
      /**
       * Invoked when a connection attempt fails. This failure is not terminal if further routes are
       * available and failure recovery is enabled.
       *
       * If the `call` uses HTTPS, this will be invoked after [secureConnectStart], otherwise it will
       * invoked after [connectStart].
       */
      open fun connectFailed(
        call: Call,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        URLs. (Previous releases would throw a `MalformedURLException` when calling
        a malformed URL.)
    
     *  **We've improved connect failure recovery.** We now differentiate between
        setup, connecting, and connected and implement appropriate recovery rules
        for each. This changes `Address` to no longer use `ConnectionSpec`. (This is
        an incompatible API change).
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

        private static final String[] CAT_NAMES =
                { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks",
                        "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    			defer wg.Done()
    			defer func() {
    				// HandleCrash has already called the crash handlers and it has been configured to utilruntime.ReallyCrash
    				// This block prevents the second panic from failing our process.
    				// This failure mode for the handler functions properly using the channel below.
    				recover()
    			}()
    			defer utilruntime.HandleCrash(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		if err != nil {
    			errs = append(errs, err)
    		}
    	}
    	// Let the user know there were problems, but we tried to recover
    	return errors.Wrap(utilerrors.NewAggregate(errs),
    		"couldn't upgrade control plane. kubeadm has tried to recover everything into the earlier state. Errors faced")
    }
    
    // rollbackEtcdData rolls back the content of etcd folder if something went wrong.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                throw new DaemonInitialConnectException("Connected to a stale daemon address.", e);
            }
    
            if (result == null) {
                // If the response from the daemon is unintelligible, mark the daemon as unavailable so other
                // clients won't try to communicate with it. We'll attempt to recovery by trying again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top