Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,650 for marking (0.25 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // Deletes the first node/volume/pod tuple from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    // Verifies there is one detach call and no (new) attach calls.
    // Deletes the second node/volume/pod tuple from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    // Verifies there are two detach calls and no (new) attach calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.h

    #define TENSORFLOW_COMPILER_JIT_ENCAPSULATE_UTIL_H_
    
    #include "absl/container/flat_hash_map.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    // Attribute marking output tensor shapes inferred by XLA. Attribute value is
    // a list of PartialTensorShape objects.
    extern const char kXlaInferredShapesAttrName[];
    
    // Infers output shapes for all nodes in graph `g`. The output shapes will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	memoryLimitHeapGoalHeadroomPercent = 3
    )
    
    // gcController implements the GC pacing controller that determines
    // when to trigger concurrent garbage collection and how much marking
    // work to do in mutator assists and background marking.
    //
    // It calculates the ratio between the allocation rate (in terms of CPU
    // time) and the GC scan throughput to determine the heap size at which to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/server.go

    	pods := s.handlers.GetActiveAmbientPodSnapshot()
    	err := s.dataplane.ConstructInitialSnapshot(pods)
    	if err != nil {
    		log.Warnf("failed to construct initial snapshot: %v", err)
    	}
    
    	log.Info("CNI ambient server marking ready")
    	s.Ready()
    	s.dataplane.Start(s.ctx)
    	s.handlers.Start()
    }
    
    func (s *Server) Stop() {
    	log.Info("CNI ambient server terminating, cleaning up node net rules")
    
    	s.cniServerStopFunc()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors.mlir

    // Immutability.
    //===----------------------------------------------------------------------===//
    
    module attributes {tf_saved_model.semantics} {
    
      // Test case: Basic test of marking immutable.
    
      // 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
    - 9.3K 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/proxy/healthcheck/proxier_health.go

    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/metrics"
    	"k8s.io/utils/clock"
    )
    
    const (
    	// ToBeDeletedTaint is a taint used by the CLuster Autoscaler before marking a node for deletion. Defined in
    	// https://github.com/kubernetes/autoscaler/blob/e80ab518340f88f364fe3ef063f8303755125971/cluster-autoscaler/utils/deletetaint/delete.go#L36
    	ToBeDeletedTaint = "ToBeDeletedByClusterAutoscaler"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. src/html/template/doc.go

    It adds escaping pipeline stages necessary to correctly and safely embed that
    plain text string in the appropriate context.
    
    When a data value is not plain text, you can make sure it is not over-escaped
    by marking it with its type.
    
    Types HTML, JS, URL, and others from content.go can carry safe content that is
    exempted from escaping.
    
    The template
    
    	Hello, {{.}}!
    
    can be invoked with
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top