Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 822 for Nodes (0.07 sec)

  1. src/cmd/compile/internal/syntax/nodes.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    // ----------------------------------------------------------------------------
    // Nodes
    
    type Node interface {
    	// Pos() returns the position associated with the node as follows:
    	// 1) The position of a node representing a terminal syntax production
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. cluster/validate-cluster.sh

          echo -e "${color_green:-}Found ${REQUIRED_NUM_NODES} Nodes, allowing additional ${ADDITIONAL_ITERATIONS} iterations for other Nodes to join.${color_norm}"
          last_run="${last_run:-$((attempt + ADDITIONAL_ITERATIONS - 1))}"
        fi
        if [[ "${attempt}" -gt "${last_run:-$MAX_ATTEMPTS}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  3. cluster/gce/config-common.sh

    # CNI storage path for Windows nodes
    export WINDOWS_CNI_STORAGE_PATH="https://storage.googleapis.com/k8s-artifacts-cni/release"
    # CNI version for Windows nodes
    export WINDOWS_CNI_VERSION="v1.5.0"
    # Pod manifests directory for Windows nodes on Windows nodes.
    export WINDOWS_MANIFESTS_DIR="${WINDOWS_K8S_DIR}\manifests"
    # Directory where cert/key files will be stores on Windows nodes.
    export WINDOWS_PKI_DIR="${WINDOWS_K8S_DIR}\pki"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/mesh/node.go

    func (n *Node) ShutDown() {
    	n.q.ShutDown()
    }
    
    type Nodes []*Node
    
    func (nodes Nodes) Select(match locality.Match) Nodes {
    	var out Nodes
    	for _, n := range nodes {
    		if match(n.locality) {
    			out = append(out, n)
    		}
    	}
    	return out
    }
    
    func (nodes Nodes) Latency() *timeseries.Instance {
    	var out timeseries.Instance
    	for _, n := range nodes {
    		out.AddAll(n.Latency())
    	}
    	return &out
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. pkg/registry/registrytest/node.go

    type NodeRegistry struct {
    	Err   error
    	Node  string
    	Nodes api.NodeList
    
    	sync.Mutex
    }
    
    // MakeNodeList constructs api.NodeList from list of node names and a NodeResource.
    func MakeNodeList(nodes []string, nodeResources api.ResourceList) *api.NodeList {
    	list := api.NodeList{
    		Items: make([]api.Node, len(nodes)),
    	}
    	for i := range nodes {
    		list.Items[i].Name = nodes[i]
    		list.Items[i].Status.Capacity = nodeResources
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. test/typeparam/graph.go

    // _EdgeC is the constraints on an edge in a graph, given the _Node type.
    type _EdgeC[_Node any] interface {
    	comparable
    	Nodes() (a, b _Node)
    }
    
    // _New creates a new _Graph from a collection of Nodes.
    func _New[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]](nodes []_Node) *_Graph[_Node, _Edge] {
    	return &_Graph[_Node, _Edge]{nodes: nodes}
    }
    
    // nodePath holds the path to a node during ShortestPath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/snapshot.go

    	nodeInfoMap map[string]*framework.NodeInfo
    	// nodeInfoList is the list of nodes as ordered in the cache's nodeTree.
    	nodeInfoList []*framework.NodeInfo
    	// havePodsWithAffinityNodeInfoList is the list of nodes with at least one pod declaring affinity terms.
    	havePodsWithAffinityNodeInfoList []*framework.NodeInfo
    	// havePodsWithRequiredAntiAffinityNodeInfoList is the list of nodes with at least one pod declaring
    	// required anti-affinity terms.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/ScheduledWork.java

        }
    
        /**
         * Returns the list of the scheduled nodes in the scheduling order.
         *
         * @return the list of the scheduled nodes
         */
        public ImmutableList<Node> getScheduledNodes() {
            return scheduledNodes;
        }
    
        /**
         * Returns the set of the entry nodes. For example, this set may contain task nodes for the tasks specified in the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/statusupdater/node_status_updater_test.go

    	}
    
    	nodes, err := fakeKubeClient.CoreV1().Nodes().List(ctx, metav1.ListOptions{})
    	if err != nil {
    		t.Fatalf("Nodes().List failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    	if len(nodes.Items) != 2 {
    		t.Fatalf("len(nodes.Items) Expected: <2> Actual: <%v>", len(nodes.Items))
    	}
    
    	for _, node := range nodes.Items {
    		if node.Name == failedNode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/QueryableExecutionPlan.java

        int size();
    
        /**
         * An immutable snapshot of the set of scheduled nodes.
         */
        interface ScheduledNodes {
            /**
             * Invokes the consumer with the list of scheduled nodes and the set of entry nodes. Entry nodes may not be a subset of scheduled nodes.
             *
             * @param visitor the consumer of nodes and entry nodes
             */
            void visitNodes(BiConsumer<List<Node>, Set<Node>> visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top