Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for recoverable (0.2 sec)

  1. pkg/volume/plugins.go

    	// - spec: The v1.Volume spec
    	// - pod: The enclosing pod
    	NewMounter(spec *Spec, podRef *v1.Pod, opts VolumeOptions) (Mounter, error)
    
    	// NewUnmounter creates a new volume.Unmounter from recoverable state.
    	// - name: The volume name, as per the v1.Volume spec.
    	// - podUID: The UID of the enclosing pod
    	NewUnmounter(name string, podUID types.UID) (Unmounter, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    		dataBlocks := (len(metaArr) + 1) / 2
    		if notFoundPartsErrs > dataBlocks {
    			// Not using parity to ensure that we do not delete
    			// any valid content, if any is recoverable. But if
    			// notFoundDataDirs are already greater than the data
    			// blocks all bets are off and it is safe to purge.
    			//
    			// This is purely a defensive code, ideally parityBlocks
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    		HandleSFTPSession:    handleSFTPSession,
    	})
    	if err != nil {
    		logger.Fatal(err, "Unable to start SFTP Server")
    	}
    
    	err = sftpServer.Listen()
    	if err != nil {
    		logger.Fatal(err, "SFTP Server had an unrecoverable error while accepting connections")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. 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)
  5. 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