Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 667 for marking (0.19 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/cmd/internal/obj/plist.go

    			q.Pc = p.Pc
    			q.Link = p
    			// Advance to the end of unsafe point.
    			for p.Link != nil && isUnsafePoint(p.Link) {
    				p = p.Link
    			}
    			if p.Link == nil {
    				break // Reached the end, don't bother marking the end
    			}
    			p = ctxt.EndUnsafePoint(p, newprog, prevPcdata)
    			p.Pc = p.Link.Pc
    			continue
    		}
    		if isRestartable(p) {
    			val := int64(abi.UnsafePointRestart1)
    			if val == prevRestart {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

                     *      | gradle-5.5.1-bin.zip
                     *      | gradle-5.5.1
                     */
                    progressMonitor.incrementDeleted();
                    LOGGER.debug("Marking distribution for {} at {} unusable", version, checksumDir);
    
                    // The wrapper uses the .ok file to identify distributions that are safe to use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors_interprocedural.mlir

    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: module attributes {tf_saved_model.semantics}
    module attributes {tf_saved_model.semantics} {
    
      // Test case: This test exercises marking a global tensor as immutable after it propagates
      // via set of chained calls -> f -> f_callee -> f_callee_callee
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-NOT: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. pkg/controller/util/node/controller_utils.go

    			// No error means at least one daemonset was found
    			continue
    		}
    
    		logger.V(2).Info("Starting deletion of pod", "pod", klog.KObj(pod))
    		recorder.Eventf(pod, v1.EventTypeNormal, "NodeControllerEviction", "Marking for deletion Pod %s from Node %s", pod.Name, nodeName)
    		if err := kubeClient.CoreV1().Pods(pod.Namespace).Delete(ctx, pod.Name, metav1.DeleteOptions{}); err != nil {
    			if apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. 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)
Back to top