Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 775 for Nodes (3.35 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        /**
         * The root node of the dependency graph.
         */
        private final Node root;
    
        /**
         * The ordered list of the flattened dependency nodes.
         */
        private final List<Node> nodes;
    
        /**
         * The file paths of all dependencies, regardless on which Java tool option those paths should be placed.
         */
        private final List<Path> paths;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        selected.forEach(function(v, n) {
          if (!match(nodes[n])) {
            unselect(n);
          }
        })
    
        // add matching items that are not currently selected.
        if (nodes) {
          for (let n = 0; n < nodes.length; n++) {
            if (!selected.has(n) && match(nodes[n])) {
              select(n);
            }
          }
        }
    
        updateButtons();
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph_test.go

    			// Note: We assert on substructures (graph.Nodes(), graph.Edges()) because the graph tracks
    			// freed IDs for reuse, which results in an irrelevant inequality between start and expect.
    
    			// sort the nodes by ID
    			// (the slices we get back are from map iteration, where order is not guaranteed)
    			expectNodes := c.expect.graph.Nodes()
    			sort.Slice(expectNodes, func(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top