Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for recoverable (0.15 sec)

  1. pkg/volume/iscsi/iscsi.go

    		},
    		mounter:    mounter,
    		exec:       exec,
    		deviceUtil: ioutil.NewDeviceHandler(ioutil.NewIOHandler()),
    	}, nil
    }
    
    // NewBlockVolumeUnmapper creates a new volume.BlockVolumeUnmapper from recoverable state.
    func (plugin *iscsiPlugin) NewBlockVolumeUnmapper(volName string, podUID types.UID) (volume.BlockVolumeUnmapper, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    		err        interface{}
    		stackTrace string
    	}
    	clientDoneCh, resultCh := make(chan struct{}), make(chan result, 1)
    	testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// this will catch recoverable panic like 'Header called after Handler finished'.
    		// go runtime crashes the program if it detects a program-ending
    		// panic like 'concurrent map iteration and map write', so this
    		// panic can not be caught.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/image/png/reader_test.go

    	)
    	_, err := Decode(strings.NewReader(pngHeader + ihdr + idatWhite + idatZero + iend))
    	if err != nil {
    		t.Fatalf("decoding valid image: %v", err)
    	}
    
    	// Non-zero-length trailing IDAT chunks should be ignored (recoverable error).
    	// The following chunk contains a single pixel with color.Gray{0}.
    	const idatBlack = "\x00\x00\x00\x0eIDAT\x78\x9c\x62\x62\x00\x04\x00\x00\xff\xff\x00\x06\x00\x03\xfa\xd0\x59\xae"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/asm/internal/asm/parse.go

    		allowABI:    ctxt != nil && objabi.LookupPkgSpecial(ctxt.Pkgpath).AllowAsmABI,
    		pkgPrefix:   pkgPrefix,
    	}
    }
    
    // panicOnError is enabled when testing to abort execution on the first error
    // and turn it into a recoverable panic.
    var panicOnError bool
    
    func (p *Parser) errorf(format string, args ...interface{}) {
    	if panicOnError {
    		panic(fmt.Errorf(format, args...))
    	}
    	if p.lineNum == p.errorLine {
    		// Only one error per line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		stateImpl, err := state.NewStateCheckpoint(m.stateFileDirectory, podStatusManagerStateFile)
    		if err != nil {
    			// This is a crictical, non-recoverable failure.
    			klog.ErrorS(err, "Could not initialize pod allocation checkpoint manager, please drain node and remove policy state file")
    			panic(err)
    		}
    		m.state = stateImpl
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    	setsig(sig, handler)
    
    	// If we're linked into a non-Go program we want to try to
    	// avoid modifying the original context in which the signal
    	// was raised. If the handler is the default, we know it
    	// is non-recoverable, so we don't have to worry about
    	// re-installing sighandler. At this point we can just
    	// return and the signal will be re-raised and caught by
    	// the default handler with the correct context.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/internal/coverage/defs.go

    	Lit      bool // true if this is a function literal
    }
    
    // CoverableUnit describes the source characteristics of a single
    // program unit for which we want to gather coverage info. Coverable
    // units are either "simple" or "intraline"; a "simple" coverable unit
    // corresponds to a basic block (region of straight-line code with no
    // jumps or control transfers). An "intraline" unit corresponds to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top