Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for recoverable (0.56 sec)

  1. guava/src/com/google/common/collect/AbstractIterator.java

       * result.
       *
       * @return the next element if there was one. If {@code endOfData} was called during execution,
       *     the return value will be ignored.
       * @throws RuntimeException if any unrecoverable error happens. This exception will propagate
       *     outward to the {@code hasNext()}, {@code next()}, or {@code peek()} invocation that invoked
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractIterator.java

       * result.
       *
       * @return the next element if there was one. If {@code endOfData} was called during execution,
       *     the return value will be ignored.
       * @throws RuntimeException if any unrecoverable error happens. This exception will propagate
       *     outward to the {@code hasNext()}, {@code next()}, or {@code peek()} invocation that invoked
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K 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