Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,650 for marking (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/kubemark/controller.go

    			metav1.DeleteOptions{PropagationPolicy: &policy})
    		if err == nil {
    			klog.Infof("marking node %s for deletion", node)
    			// Mark node for deletion from kubemark cluster.
    			// Once it becomes unready after replication controller
    			// deletion has been noticed, we will delete it explicitly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  6. 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)
  7. android/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)
  8. 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)
  9. 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)
  10. 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)
Back to top