Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for recoverable (0.21 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go

    		// which can be modified in another goroutine when apiserver request times out.
    		// For example authentication filter modifies request's headers,
    		// This can cause apiserver to crash with unrecoverable fatal error.
    		// More info about concurrent read and write for maps: https://golang.org/doc/go1.6#runtime
    		"userAgent", rl.userAgent,
    		"audit-ID", auditID,
    		"srcIP", rl.req.RemoteAddr,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    	zero  uint64
    	fatal func(msg string)
    }
    
    func (n *nonceGenerator) next(b []byte) {
    	incrementingNonce := n.nonce.Add(1)
    	if incrementingNonce <= n.zero {
    		// this should never happen, and is unrecoverable if it does
    		n.fatal("aes-gcm detected nonce overflow - cryptographic wear out has occurred")
    	}
    	binary.LittleEndian.PutUint64(b, incrementingNonce)
    }
    
    func die(msg string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top