Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 578 for marking (0.16 sec)

  1. pkg/controller/volume/attachdetach/statusupdater/node_status_updater.go

    		// to indicate this node status needs to be updated again
    		nsu.actualStateOfWorld.SetNodeStatusUpdateNeeded(logger, nodeName)
    
    		logger.V(2).Info("Could not update node status; re-marking for update", "node", klog.KObj(nodeObj), "err", err)
    
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

                lock.unlock();
            }
        }
    
        @Override
        public void markState(final Address address, final State state) {
            lock.lock();
            try {
                LOGGER.debug("Marking busy by address: {}", address);
                cache.update(new ObjectHolder.UpdateAction<DaemonRegistryContent>() {
                    @Override
                    public DaemonRegistryContent update(DaemonRegistryContent oldValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_outlining.cc

      } else {
        func_name = "_func";
      }
    
      func::FuncOp outlined_func =
          func::FuncOp::create(op.getLoc(), func_name, func_type);
    
      // This function is not externally visible and marking it private would allow
      // symbol-dce pass to remove it when it is not referenced anymore.
      outlined_func.setPrivate();
    
      // Create function body.
      Block* outlined_func_block = outlined_func.addEntryBlock();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. src/runtime/mwbbuf.go

    // various GC transitions.
    //
    // This is closely related to a "sequential store buffer" (SSB),
    // except that SSBs are usually used for maintaining remembered sets,
    // while this is used for marking.
    type wbBuf struct {
    	// next points to the next slot in buf. It must not be a
    	// pointer type because it can point past the end of buf and
    	// must be updated without write barriers.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. 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)
Back to top