Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 876 for Nodes (0.04 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    				rbacv1helpers.NewRule("get", "list", "watch").Groups(legacyGroup).Resources("nodes").RuleOrDie(),
    				rbacv1helpers.NewRule("patch", "update").Groups(legacyGroup).Resources("nodes/status").RuleOrDie(),
    				rbacv1helpers.NewRule("list", "watch").Groups(legacyGroup).Resources("pods").RuleOrDie(),
    				eventsRule(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. pkg/registry/core/serviceaccount/storage/token.go

    					newCtx := newContext(ctx, "nodes", nodeName, "", api.SchemeGroupVersion.WithKind("Node"))
    					// set ResourceVersion=0 to allow this to be read/served from the apiservers watch cache
    					nodeObj, err := r.nodes.Get(newCtx, nodeName, &metav1.GetOptions{ResourceVersion: "0"})
    					if err != nil {
    						nodeObj, err = r.nodes.Get(newCtx, nodeName, &metav1.GetOptions{}) // fallback to a live lookup on any error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            private final Map<String, NodeBuilder> nodes = [:]
            private NodeBuilder root
    
            final Set<String> virtualConfigurations = []
    
            Collection<NodeBuilder> getNodes() {
                return nodes.values()
            }
    
            Collection<NodeBuilder> getNodesWithoutRoot() {
                def nodes = new HashSet<>()
                visitDeps(this.root.deps, nodes, new HashSet<>())
                return nodes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/stackcheck.go

    		// stack growth.
    		addEdge(maxLocalHeight, 0)
    	}
    
    	return maxHeight, edges
    }
    
    func (sc *stackCheck) findRoots() []loader.Sym {
    	// Collect all nodes.
    	nodes := make(map[loader.Sym]struct{})
    	for k := range sc.graph {
    		nodes[k] = struct{}{}
    	}
    
    	// Start a DFS from each node and delete all reachable
    	// children. If we encounter an unrooted cycle, this will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

    namespace tensorflow {
    
    namespace {
    
    const char* const kXlaClusterOutput = "XlaClusterOutput";
    
    bool IsCpuGpuCompile(const Graph* graph) {
      for (Node* n : graph->nodes()) {
        string name;
        // Only consider nodes being compiled.
        if (!TryGetNodeAttr(n->attrs(), kXlaClusterIdAttr, &name)) continue;
        // Early return for any node with a device that is not a CPU or GPU.
        DeviceNameUtils::ParsedName parsed;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    			defer cancel()
    			nodes := makeNodesWithTopologyZone(tt.NumNodes)
    			pl := newPluginWithListers(ctx, b, []*v1.Pod{tt.Pod}, nodes, makePVCsWithPV(tt.NumPVC), makePVsWithZoneLabel(tt.NumPV))
    			nodeInfos := make([]*framework.NodeInfo, len(nodes), len(nodes))
    			for i := 0; i < len(nodes); i++ {
    				nodeInfo := &framework.NodeInfo{}
    				nodeInfo.SetNode(nodes[i])
    				nodeInfos[i] = nodeInfo
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    // preemption algorithm, in particular the following 2 facts:
    // Fact 1: we only preempt pods on the same node, instead of pods on multiple nodes.
    // Fact 2: each node is evaluated on a separate copy of the preFilterState during its preemption cycle.
    // If we plan to turn to a more complex algorithm like "arbitrary pods on multiple nodes", this
    // structure needs to be revisited.
    // Fields are exported for comparison during testing.
    type criticalPaths [2]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                          Enabled by default, set to nil to disable.
                        properties:
                          hostEndpoint:
                            description: HostEndpoint controls syncing nodes to host endpoints.
                              Disabled by default, set to nil to disable.
                            properties:
                              autoCreate:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  9. tensorflow/cc/tools/freeze_saved_model.cc

    }
    
    // Returns the name of the VarHandleOp that provides input (possibly indirectly)
    // to node with node_name. A typical indirect chain of nodes (that can occur due
    // to graph inlining) is the following: VarHandleOp -> Identity -> Identity ->
    // ReadVariableOp. Calling the function on any of these nodes would return the
    // name of the VarHandleOp.
    StatusOr<string> GetVarHandleName(
        const std::unordered_map<string, NodeDef*>& name_to_node_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. cluster/gce/upgrade.sh

      echo ""
      echo "${0} [-M | -N | -P] [-o] (-l | <version number or publication>)"
      echo "  Upgrades master and nodes by default"
      echo "  -M:  Upgrade master only"
      echo "  -N:  Upgrade nodes only"
      echo "  -P:  Node upgrade prerequisites only (create a new instance template)"
      echo "  -c:  Upgrade NODE_UPGRADE_PARALLELISM nodes in parallel (default=1) within a single instance group. The MIGs themselves are dealt serially."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top