Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 122 for recoverable (0.32 sec)

  1. src/syscall/tables_wasip1.go

    	ENOSYS:          "Not implemented on " + runtime.GOOS,
    	ENOTCONN:        "Socket is not connected",
    	ENOTDIR:         "Not a directory",
    	ENOTEMPTY:       "Directory not empty",
    	ENOTRECOVERABLE: "State not recoverable",
    	ENOTSOCK:        "Socket operation on non-socket",
    	ENOTSUP:         "Not supported",
    	ENOTTY:          "Not a typewriter",
    	ENXIO:           "No such device or address",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/syscall/zerrors_windows.go

    	ENOTEMPTY - APPLICATION_ERROR:       "directory not empty",
    	ENOTNAM - APPLICATION_ERROR:         "not a XENIX named type file",
    	ENOTRECOVERABLE - APPLICATION_ERROR: "state not recoverable",
    	ENOTSOCK - APPLICATION_ERROR:        "socket operation on non-socket",
    	ENOTSUP - APPLICATION_ERROR:         "operation not supported",
    	ENOTTY - APPLICATION_ERROR:          "inappropriate ioctl for device",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

            call.exitNetworkInterceptorExchange(closeActiveExchange)
          }
        }
      }
    
      /**
       * Report and attempt to recover from a failure to communicate with a server. Returns true if
       * `e` is recoverable, or false if the failure is permanent. Requests with a body can only
       * be recovered if the body is buffered or if the failure occurred before the request has been
       * sent.
       */
      private fun recover(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    		// 2. Delete the object from storage.
    		// If the update succeeds, but the delete fails (network error, internal storage error, etc.),
    		// a resource was previously left in a state that was non-recoverable.  We
    		// check if the existing stored resource has a grace period as 0 and if so
    		// attempt to delete immediately in order to recover from this scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  5. internal/http/headers.go

    	// MinIOSnowballIgnoreDirs will skip creating empty directory objects.
    	MinIOSnowballIgnoreDirs = "X-Amz-Meta-Minio-Snowball-Ignore-Dirs"
    	// MinIOSnowballIgnoreErrors will ignore recoverable errors, typically single files failing to upload.
    	// An error will be printed to console instead.
    	MinIOSnowballIgnoreErrors = "X-Amz-Meta-Minio-Snowball-Ignore-Errors"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/time/sleep.go

    //
    // Before Go 1.23, the garbage collector did not recover
    // timers that had not yet expired or been stopped, so code often
    // immediately deferred t.Stop after calling NewTimer, to make
    // the timer recoverable when it was no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // timers, even if they haven't expired or been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    - link:{javadocPath}/org/gradle/api/problems/ProblemReporter.html#throwing-org.gradle.api.Action-[Throwing] a problem is used for reporting problems that are not recoverable, and the build should fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/runtime/HACKING.md

    Most errors in the runtime are not recoverable. For these, use
    `throw`, which dumps the traceback and immediately terminates the
    process. In general, `throw` should be passed a string constant to
    avoid allocating in perilous situations. By convention, additional
    details are printed before `throw` using `print` or `println` and the
    messages are prefixed with "runtime:".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{162, "EKEYEXPIRED", "key has expired"},
    	{163, "EKEYREVOKED", "key has been revoked"},
    	{164, "EKEYREJECTED", "key was rejected by service"},
    	{165, "EOWNERDEAD", "owner died"},
    	{166, "ENOTRECOVERABLE", "state not recoverable"},
    	{167, "ERFKILL", "operation not possible due to RF-kill"},
    	{168, "EHWPOISON", "memory page has hardware error"},
    	{1133, "EDQUOT", "disk quota exceeded"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top