Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,706 for _nodes (0.15 sec)

  1. pkg/volume/util/fs/fs.go

    	}
    
    	inodes, _ := fsquota.GetInodes(path)
    	if inodes != nil {
    		usage.Inodes = inodes.Value()
    	}
    
    	if inodes != nil && consumption != nil {
    		return usage, nil
    	}
    
    	topLevelStat := &unix.Stat_t{}
    	err := unix.Stat(path, topLevelStat)
    	if err != nil {
    		return usage, err
    	}
    
    	// dedupedInode stores inodes that could be duplicates (nlink > 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

            handler.add(new LinkHandler(nodes, linkConverter, classMetaData, listener));
            handler.add(new InheritDocHandler(nodes, inheritedCommentSource));
            handler.add(new ValueTagHandler(nodes, linkConverter, classMetaData, listener));
            handler.add(new LiteralTagHandler(nodes));
            handler.add(new TableHandler(nodes, document));
            handler.add(new DlElementHandler(nodes, document));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/Graphs.java

        MutableGraph<N> subgraph =
            (nodes instanceof Collection)
                ? GraphBuilder.from(graph).expectedNodeCount(((Collection) nodes).size()).build()
                : GraphBuilder.from(graph).build();
        for (N node : nodes) {
          subgraph.addNode(node);
        }
        for (N node : subgraph.nodes()) {
          for (N successorNode : graph.successors(node)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/Graphs.java

        MutableGraph<N> subgraph =
            (nodes instanceof Collection)
                ? GraphBuilder.from(graph).expectedNodeCount(((Collection) nodes).size()).build()
                : GraphBuilder.from(graph).build();
        for (N node : nodes) {
          subgraph.addNode(node);
        }
        for (N node : subgraph.nodes()) {
          for (N successorNode : graph.successors(node)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

            public WaitForNodesToComplete(Set<Node> nodes) {
                this.nodes = nodes;
            }
    
            @Nullable
            @Override
            public Node.DependenciesState successorsComplete() {
                boolean isAnyExecuted = false;
                for (Node node : nodes) {
                    if (!node.isComplete()) {
                        return Node.DependenciesState.NOT_COMPLETE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache_test.go

    	snapshot := cache.Dump()
    	if len(snapshot.Nodes) != len(cache.nodes) {
    		t.Errorf("Unequal number of nodes in the cache and its snapshot. expected: %v, got: %v", len(cache.nodes), len(snapshot.Nodes))
    	}
    	for name, ni := range snapshot.Nodes {
    		nItem := cache.nodes[name]
    		if diff := cmp.Diff(nItem.info, ni, cmp.AllowUnexported(framework.NodeInfo{})); diff != "" {
    			t.Errorf("Unexpected node info (-want,+got):\n%s", diff)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // sockets contain a bigger number of CPUs (free and busy) than NUMA nodes, or equivalently that each
    // socket contains more than one NUMA node.
    //
    // If instead sockets are lower in the memory hierarchy than NUMA nodes, they are sorted as follows.
    // First, they are sorted by number of free CPUs in the NUMA nodes that contain them. Then, for each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

                nodes[1].nodeDependencies*.name == []
                nodes[2].nodeIdentity.name == "task3"
                nodes[2].nodeDependencies*.name == []
                nodes[3].nodeIdentity.name == "task4"
                nodes[3].nodeDependencies*.name == ["transformStep2"]
                nodes[4].nodeIdentity.name == "transformStep1"
                nodes[4].nodeDependencies*.name == ["task2", "task3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/numa_info_test.go

    		},
    		{
    			name: "positive test 2 nodes",
    			topology: []cadvisorapi.Node{
    				{
    					Id: 0,
    				},
    				{
    					Id: 1,
    				},
    			},
    			expectedNUMAInfo: &NUMAInfo{
    				Nodes: []int{0, 1},
    				NUMADistances: NUMADistances{
    					0: nil,
    					1: nil,
    				},
    			},
    		},
    		{
    			name: "positive test 2 nodes, with PreferClosestNUMA",
    			topology: []cadvisorapi.Node{
    				{
    					Id: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  10. cluster/validate-cluster.sh

          kubectl_retry get nodes
          if [[ "${REQUIRED_NUM_NODES}" -gt "${ready}" ]]; then
            exit 1
          else
            return_value=2
            break
          fi
        else
          echo -e "${color_yellow}Waiting for ${EXPECTED_NUM_NODES} ready nodes. ${ready} ready nodes, ${found} registered. Retrying.${color_norm}"
        fi
      fi
    done
    echo "Found ${found} node(s)."
    kubectl_retry get nodes
    
    attempt=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
Back to top