Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,650 for marking (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/cm/cpumanager/policy_static.go

    // available CPUs and the number of CPUs being requested.
    //
    // It follows the convention of marking all hints that have the same number of
    // bits set as the narrowest matching NUMANodeAffinity with 'Preferred: true', and
    // marking all others with 'Preferred: false'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K 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