Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 742 for recovered (0.51 sec)

  1. src/time/sleep.go

    //
    // Before Go 1.23, this documentation warned that the underlying
    // [Timer] would not be recovered by the garbage collector until the
    // timer fired, and that if efficiency was a concern, code should use
    // NewTimer instead and call [Timer.Stop] if the timer is no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced,
    // unstopped timers. There is no reason to prefer NewTimer when After will do.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    func RecoverFromPanic(err *error) {
    	if r := recover(); r != nil {
    		// Same as stdlib http server code. Manually allocate stack trace buffer size
    		// to prevent excessively large logs
    		const size = 64 << 10
    		stacktrace := make([]byte, size)
    		stacktrace = stacktrace[:runtime.Stack(stacktrace, false)]
    
    		*err = fmt.Errorf(
    			"recovered from panic %q. (err=%v) Call stack:\n%s",
    			r,
    			*err,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    // otherwise then Bytes will repanic with the same value.
    type BuilderContinuation func(child *Builder)
    
    // BuildError wraps an error. If a BuilderContinuation panics with this value,
    // the panic will be recovered and the inner error will be returned from
    // Builder.Bytes.
    type BuildError struct {
    	Err error
    }
    
    // AddUint8LengthPrefixed adds a 8-bit length-prefixed byte sequence.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // The webhook cares about an operation if it matches _any_ Rule.
      // However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
      // from putting the cluster in a state which cannot be recovered from without completely
      // disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called
      // on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
        # ensure Istio control plane components are gradually upgraded or recovered.
        defaultPodDisruptionBudget:
          enabled: true
    
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/values.yaml

        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
        # ensure Istio control plane components are gradually upgraded or recovered.
        defaultPodDisruptionBudget:
          enabled: true
    
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    		}
    
    	})
    	handler := func(delegate http.Handler) http.Handler {
    		return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    			defer func() {
    				if r := recover(); r != nil {
    					t.Errorf("Recovered %v", r)
    				}
    			}()
    			lock.Lock()
    			defer lock.Unlock()
    			req = req.WithContext(ctx)
    			currentCtx := req.Context()
    
    			user, exists := request.UserFrom(currentCtx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    	go c.monitorState(conn, cancel)
    
    	c.handleMsgWg.Add(2)
    	c.reconnectMu.Unlock()
    
    	// Read goroutine
    	go func() {
    		defer func() {
    			if rec := recover(); rec != nil {
    				gridLogIf(ctx, fmt.Errorf("handleMessages: panic recovered: %v", rec))
    				debug.PrintStack()
    			}
    			c.connChange.L.Lock()
    			if atomic.CompareAndSwapUint32((*uint32)(&c.state), StateConnected, StateConnectionError) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/sync/sync.go

    	if err != nil {
    		return err
    	}
    	// If addAlias returns a hard error, cidrRange will be leaked as there
    	// is no durable record of the range. The missing space will be
    	// recovered on the next restart of the controller.
    	logger := klog.FromContext(ctx)
    	if err := sync.cloudAlias.AddAlias(ctx, node, cidrRange); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    	for i := 0; i < 100; i++ {
    		ctt := newTest()
    		t.Run(ctt.name, func(t *testing.T) {
    			defer func() {
    				if r := recover(); r != nil {
    					t.Fatalf("recovered from err %v", r)
    				}
    			}()
    			t.Parallel()
    
    			encoder := &fakeEncoder{
    				buf:  ctt.out,
    				errs: ctt.outErrs,
    			}
    			if ctt.statusCode == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top