Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 687 for marking (0.2 sec)

  1. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"backoffLimit":            "Specifies the number of retries before marking this job failed. Defaults to 6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. pkg/config/validation/envoyfilter/envoyfilter.go

    	// an user error. Marking it as a warning to keep it backwards compatible.
    	if warning != nil {
    		errs = validation.AppendValidation(errs,
    			validation.WrapWarning(fmt.Errorf("Envoy filter: %s, will be applied to all services in namespace", warning))) // nolint: stylecheck
    	}
    
    	for _, cp := range rule.ConfigPatches {
    		if cp == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/internal/filepathlite/path_windows.go

    	if path == "" {
    		return false
    	}
    	if IsPathSeparator(path[0]) {
    		// Path rooted in the current drive.
    		return false
    	}
    	if stringslite.IndexByte(path, ':') >= 0 {
    		// Colons are only valid when marking a drive letter ("C:foo").
    		// Rejecting any path with a colon is conservative but safe.
    		return false
    	}
    	hasDots := false // contains . or .. path elements
    	for p := path; p != ""; {
    		var part string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional SuccessPolicy successPolicy = 16;
    
      // Specifies the number of retries before marking this job failed.
      // Defaults to 6
      // +optional
      optional int32 backoffLimit = 7;
    
      // Specifies the limit for the number of retries within an
      // index before marking this index as failed. When enabled the number of
      // failures per index is kept in the pod's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	// Specifies the number of retries before marking this job failed.
    	// Defaults to 6
    	// +optional
    	BackoffLimit *int32 `json:"backoffLimit,omitempty" protobuf:"varint,7,opt,name=backoffLimit"`
    
    	// Specifies the limit for the number of retries within an
    	// index before marking this index as failed. When enabled the number of
    	// failures per index is kept in the pod's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// Unfortunately, making a new thread breaks us out of the network namespace we entered previously, so we need to restore that as well
    	go func() {
    		chErr <- func() error {
    			// We now have exclusive access to this thread. Once the goroutine exits without calling UnlockOSThread, the go runtime will kill the thread for us
    			// Warning: Do not call UnlockOSThread! Notably, netns.Do does call this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pkg/apis/batch/types.go

    	// resumed again.
    	// +optional
    	ActiveDeadlineSeconds *int64
    
    	// Optional number of retries before marking this job failed.
    	// Defaults to 6
    	// +optional
    	BackoffLimit *int32
    
    	// Specifies the limit for the number of retries within an
    	// index before marking this index as failed. When enabled the number of
    	// failures per index is kept in the pod's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    		}
    	}
    }
    
    func (rc *reconciler) unmountDetachDevices() {
    	for _, attachedVolume := range rc.actualStateOfWorld.GetUnmountedVolumes() {
    		// Check IsOperationPending to avoid marking a volume as detached if it's in the process of mounting.
    		if !rc.desiredStateOfWorld.VolumeExists(attachedVolume.VolumeName, attachedVolume.SELinuxMountContext) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/README

    and $WORK/gopath/src/hello.go containing the listed contents.
    
    Each line of a script is parsed into a sequence of space-separated command
    words, with environment variable expansion within each word and # marking
    an end-of-line comment. Additional variables named ':' and '/' are expanded
    within script arguments (expanding to the value of os.PathListSeparator and
    os.PathSeparator respectively) but are not inherited in subprocess environments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/os/removeall_test.go

    	if Getuid() == 0 {
    		// On many platforms, root can remove files from read-only directories.
    		return
    	}
    	if err == nil {
    		if runtime.GOOS == "windows" || runtime.GOOS == "wasip1" {
    			// Marking a directory as read-only in Windows does not prevent the RemoveAll
    			// from creating or removing files within it.
    			//
    			// For wasip1, there is no support for file permissions so we cannot prevent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top