Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 343 for marking (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    include::sample[dir="snippets/initScripts/multiVersionCacheRetention/groovy",files="gradleUserHome/init.d/gradle8/cache-settings.gradle"]
    ====
    
    [[dir:gradle_user_home:cache_marking]]
    === Cache marking
    Beginning with Gradle version 8.1, Gradle supports marking caches with a `CACHEDIR.TAG` file.
    
    It follows the format described in https://bford.info/cachedir/[the Cache Directory Tagging Specification].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. internal/rest/client.go

    	if err != nil {
    		if xnet.IsNetworkOrHostDown(err, expectTimeouts) {
    			if !c.NoMetrics {
    				atomic.AddUint64(&globalStats.errs, 1)
    			}
    			if c.MarkOffline(err) {
    				logger.LogOnceIf(ctx, logSubsys, fmt.Errorf("Marking %s offline temporarily; caused by %w", c.url.Host, err), c.url.Host)
    			}
    		}
    		return nil, &NetworkError{err}
    	}
    
    	// If trace is enabled, dump http request and response,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                        LOGGER.debug("Marking daemon stopped due to {}. The daemon is not running a build", reason);
                        stopReason = reason;
                        setState(State.Stopped);
                        break;
                    case Busy:
                    case Canceled:
                    case Broken:
                    case StopRequested:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/runtime/mbarrier.go

    //         *slot = ptr
    //
    // slot is the destination in Go code.
    // ptr is the value that goes into the slot in Go code.
    //
    // Shade indicates that it has seen a white pointer by adding the referent
    // to wbuf as well as marking it.
    //
    // The two shades and the condition work together to prevent a mutator
    // from hiding an object from the garbage collector:
    //
    // 1. shade(*slot) prevents a mutator from hiding an object by moving
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    					continue
    				}
    			}
    
    			// Because the detach operation updates the ActualStateOfWorld before
    			// marking itself complete, it's possible for the volume to be removed
    			// from the ActualStateOfWorld between the GetAttachedVolumes() check
    			// and the IsOperationSafeToRetry() check above.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/runtime/mfinal.go

    // lockRankMayQueueFinalizer records the lock ranking effects of a
    // function that may call queuefinalizer.
    func lockRankMayQueueFinalizer() {
    	lockWithRankMayAcquire(&finlock, getLockRank(&finlock))
    }
    
    func queuefinalizer(p unsafe.Pointer, fn *funcval, nret uintptr, fint *_type, ot *ptrtype) {
    	if gcphase != _GCoff {
    		// Currently we assume that the finalizer queue won't
    		// grow during marking so we don't have to rescan it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top