Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,918 for Nodes (0.05 sec)

  1. staging/src/k8s.io/api/node/v1beta1/types.go

    	// scheduling holds the scheduling constraints to ensure that pods running
    	// with this RuntimeClass are scheduled to nodes that support it.
    	// If scheduling is nil, this RuntimeClass is assumed to be supported by all
    	// nodes.
    	// +optional
    	Scheduling *Scheduling `json:"scheduling,omitempty" protobuf:"bytes,4,opt,name=scheduling"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparerTest.groovy

                    getTaskIdentity() >> ti1
                }
            }
            List<Node> nodes = [t]
    
            def scheduledNodesStub = Stub(QueryableExecutionPlan.ScheduledNodes) {
                visitNodes(_) >> { BiConsumer<List<Node>, Set<Node>> consumer ->
                    consumer.accept(nodes, new HashSet<Node>(nodes))
                }
            }
    
            def executionPlan = Stub(ExecutionPlan) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pkg/kubelet/client/kubelet_client.go

    	return f(ctx, name, options)
    }
    
    // NodeConnectionInfoGetter obtains connection info from the status of a Node API object
    type NodeConnectionInfoGetter struct {
    	// nodes is used to look up Node objects
    	nodes NodeGetter
    	// scheme is the scheme to use to connect to all kubelets
    	scheme string
    	// defaultPort is the port to use if no Kubelet endpoint port is recorded in the node status
    	defaultPort int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/NodeGroup.java

    import javax.annotation.Nullable;
    
    /**
     * <p>Represents the reason why a node is included in the work graph. In general, nodes are included in the graph because they are either a "root node" or they are reachable from one or more "root nodes"
     * or both. There are two basic kind of "root nodes":</p>
     * <ul>
     *     <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 19:58:07 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_netbsd.go

    	if err = sysctl(mib, nil, &olen, qp, sz); err != nil {
    		return nil, err
    	}
    
    	// Now that we know the size, get the actual nodes.
    	nodes = make([]Sysctlnode, olen/sz)
    	np := (*byte)(unsafe.Pointer(&nodes[0]))
    	if err = sysctl(mib, np, &olen, qp, sz); err != nil {
    		return nil, err
    	}
    
    	return nodes, nil
    }
    
    func nametomib(name string) (mib []_C_int, err error) {
    	// Split name into components.
    	var parts []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    	if len(b.Nodes) > 0 {
    		ret, _ = b.Nodes[len(b.Nodes)-1].(*ast.ReturnStmt)
    	}
    	return
    }
    
    // Format formats the control-flow graph for ease of debugging.
    func (g *CFG) Format(fset *token.FileSet) string {
    	var buf bytes.Buffer
    	for _, b := range g.Blocks {
    		fmt.Fprintf(&buf, ".%d: # %s\n", b.Index, b.comment(fset))
    		for _, n := range b.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			logger.Info("Controller detected that some Nodes are Ready. Exiting master disruption mode")
    			// When exiting disruption mode update probe timestamps on all Nodes.
    			now := nc.now()
    			for i := range nodes {
    				v := nc.nodeHealthMap.getDeepCopy(nodes[i].Name)
    				v.probeTimestamp = now
    				v.readyTransitionTimestamp = now
    				nc.nodeHealthMap.set(nodes[i].Name, v)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            for (NodeState node : nodes) {
                if (node.isSelected()) {
                    consumer.accept(node);
                }
            }
        }
    
        @Override
        public List<ComponentState> getDependents() {
            List<ComponentState> incoming = Lists.newArrayListWithCapacity(nodes.size());
            for (NodeState node : nodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_util.cc

      // Gather all outside compilation to outside compilation nodes.
      std::vector<Node*> placeholder_nodes;
      for (Node* n : g->nodes()) {
        if (n->type_string() == "Placeholder" &&
            HasNodeAttr(n->def(), kOutsideCompilationOriginalNodeAttrName)) {
          placeholder_nodes.push_back(n);
        }
      }
    
      // Remove the placeholder nodes, and reconnect original edge.
      auto node_name_index = g->BuildNodeNameIndex();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

      rules:
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - proxy
      - apiGroups:
        - ""
        resources:
        - nodes/log
        - nodes/metrics
        - nodes/proxy
        - nodes/stats
        verbs:
        - '*'
    - apiVersion: rbac.authorization.k8s.io/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
Back to top