Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,505 for nodeIPs (0.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        void applyToSelf(ModelActionRole type, ModelAction action);
    
        /**
         * Applies an action to all linked nodes of this node that satisfy the given predicate.
         *
         * The predicate and the type returned by {@link ModelAction#getSubject()} are both used to filter the nodes,
         * such that the action is applied only to those linked nodes with a view of the requested type available that
         * also satisfy the predicate.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. pkg/registry/core/node/strategy.go

    )
    
    // nodeStrategy implements behavior for nodes
    type nodeStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Nodes is the default logic that applies when creating and updating Node
    // objects.
    var Strategy = nodeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is false for nodes.
    func (nodeStrategy) NamespaceScoped() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p2").UID("p2").Namespace(v1.NamespaceDefault).Node("node2").Obj(),
    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(nodeRes).Obj(),
    				st.MakeNode().Name("node2").Capacity(nodeRes).Obj(),
    				st.MakeNode().Name("node3").Capacity(nodeRes).Obj(),
    				st.MakeNode().Name("node4").Capacity(nodeRes).Obj(),
    			},
    			filteredNodesStatuses: framework.NodeToStatusMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/bgppeers-crd.yaml

                    type: string
                  peerSelector:
                    description: Selector for the remote nodes to peer with.  When this
                      is set, the PeerIP and ASNumber fields must be empty.  For each
                      peering between the local node and selected remote nodes, we configure
                      an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/bootstraptoken/v1/types.go

    // BootstrapToken describes one bootstrap token, stored as a Secret in the cluster
    // +k8s:deepcopy-gen=true
    type BootstrapToken struct {
    	// Token is used for establishing bidirectional trust between nodes and control-planes.
    	// Used for joining nodes in the cluster.
    	Token *BootstrapTokenString `json:"token" datapolicy:"token"`
    	// Description sets a human-friendly message why this token exists and what it's used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 01 21:11:49 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

            SortedSet<Node> nodes = new TreeSet<>(NodeComparator.INSTANCE);
            for (Task task : tasks) {
                nodes.add(taskNodeFactory.getOrCreateNode(task));
            }
            doAddEntryNodes(nodes, ordinal);
        }
    
        public void addEntryNodes(Collection<? extends Node> nodes) {
            addEntryNodes(nodes, order++);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/gradients.cc

        }
      }
      // BFS from nodes in 'inputs_' along out edges for the entire graph. Internal
      // output nodes are recorded during the traversal. All nodes that are output
      // nodes but not internal output nodes are considered the frontier of the
      // output nodes, and thus our stop backprop nodes.
      while (!queue.empty()) {
        std::pair<Node*, Node*> p = queue.front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. pkg/kubelet/util/nodelease.go

    		// Setting owner reference needs node's UID. Note that it is different from
    		// kubelet.nodeRef.UID. When lease is initially created, it is possible that
    		// the connection between master and node is not ready yet. So try to set
    		// owner reference every time when renewing the lease, until successful.
    		if len(lease.OwnerReferences) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 07 15:47:46 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

            this.graph = graph;
        }
    
        /**
         * Adds some start nodes.
         */
        public CachingDirectedGraphWalker<N, T> add(N... values) {
            add(Arrays.asList(values));
            return this;
        }
    
        /**
         * Adds some start nodes.
         */
        public CachingDirectedGraphWalker<?, ?> add(Iterable<? extends N> values) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. tensorflow/cc/ops/while_loop.cc

    // `scope`. `enter_output` is the `loop_var_idx`-th Enter node's output.
    Status CreateMerge(const Scope& scope, int loop_var_idx,
                       const Output& enter_output, Output* merge_output) {
      // The merge nodes accept the while loop's back edges as an input (i.e. the
      // not-yet-created next iteration nodes). Use the underlying NodeBuilder API
      // directly to create the back edge.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top