Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,352 for marking (0.18 sec)

  1. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

                    // Don't want to have two workers pulling from the queue.
                    return;
                  } else {
                    // Increment the run counter to avoid the ABA problem of a submitter marking the
                    // thread as QUEUED after it already ran and exhausted the queue before returning
                    // from execute().
                    workerRunCount++;
                    workerRunningState = RUNNING;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/base/base.go

    	//   be currently in progress, and GCs can start for several reasons.
    
    	// - forEachGC above will run the provided function at some delay after each
    	//   GC's mark phase terminates; finalizers are run after marking as the
    	//   spans containing finalizable objects are swept, driven by GC
    	//   background activity and allocation demand.
    
    	// - "live at last GC" is not available through the current metrics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

    public abstract class AbstractFuture<V extends @Nullable Object> extends InternalFutureFailureAccess
        implements ListenableFuture<V> {
    
      static final boolean GENERATE_CANCELLATION_CAUSES = false;
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/compress/gzip/gunzip.go

    // reaches the end of the uncompressed data if it does not
    // have the expected length or checksum. Clients should treat data
    // returned by [Reader.Read] as tentative until they receive the [io.EOF]
    // marking the end of the data.
    type Reader struct {
    	Header       // valid after NewReader or Reader.Reset
    	r            flate.Reader
    	decompressor io.ReadCloser
    	digest       uint32 // CRC-32, IEEE polynomial (section 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top