Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     underlying this step 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 function to be called if this step fails with the expected exception type.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    			for j, v := range b.Values {
    				var v0 *Value
    				if debug > 1 {
    					v0 = new(Value)
    					*v0 = *v
    					v0.Args = append([]*Value{}, v.Args...) // make a new copy, not aliasing
    				}
    				if v.Uses == 0 && v.removeable() {
    					if v.Op != OpInvalid && deadcode == removeDeadValues {
    						// Reset any values that are now unused, so that we decrement
    						// the use count of all of its arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    // sends a frame that is larger than declared with SetMaxReadFrameSize.
    var http2ErrFrameTooLarge = errors.New("http2: frame too large")
    
    // terminalReadFrameError reports whether err is an unrecoverable
    // error from ReadFrame and no other frames should be read.
    func http2terminalReadFrameError(err error) bool {
    	if _, ok := err.(http2StreamError); ok {
    		return false
    	}
    	return err != nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. RELEASE.md

            Specifically, for the type of interruption with advance notice, it
            automatically saves a checkpoint, exits the program without raising an
            unrecoverable error, and restores the progress when training restarts.
    
    *   `tf.math`:
    
        *   Added `tf.math.approx_max_k` and `tf.math.approx_min_k` which are the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top