Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 469 for node_ (0.04 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    
        /**
         * @return repositories of this node
         */
        @Nonnull
        List<RemoteRepository> getRemoteRepositories();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/numa_info.go

    type NUMAInfo struct {
    	Nodes         []int
    	NUMADistances NUMADistances
    }
    
    func NewNUMAInfo(topology []cadvisorapi.Node, opts PolicyOptions) (*NUMAInfo, error) {
    	var numaNodes []int
    	distances := map[int][]uint64{}
    	for _, node := range topology {
    		numaNodes = append(numaNodes, node.Id)
    
    		var nodeDistance []uint64
    		if opts.PreferClosestNUMA {
    			nodeDistance = node.Distances
    			if nodeDistance == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	expectedNominatedPods := &nominator{
    		nominatedPodToNode: map[types.UID]string{
    			medPriorityPodInfo.Pod.UID:   "node1",
    			highPriorityPodInfo.Pod.UID:  "node2",
    			unschedulablePodInfo.Pod.UID: "node5",
    		},
    		nominatedPods: map[string][]*framework.PodInfo{
    			"node1": {medPriorityPodInfo},
    			"node2": {highPriorityPodInfo},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator_test.go

    }
    
    func TestOccupyPreExistingCIDR(t *testing.T) {
    	// all tests operate on a single node
    	testCases := []testCase{
    		{
    			description: "success, single stack no node allocation",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node0",
    						},
    					},
    				},
    				Clientset: fake.NewSimpleClientset(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_extender.go

    		} else if status.Code() == framework.Unschedulable {
    			failedNodesMap[node.Node().Name] = fmt.Sprintf("FakeExtender: node %q failed", node.Node().Name)
    		} else if status.Code() == framework.UnschedulableAndUnresolvable {
    			failedAndUnresolvableMap[node.Node().Name] = fmt.Sprintf("FakeExtender: node %q failed and unresolvable", node.Node().Name)
    		} else {
    			return nil, nil, nil, status.AsError()
    		}
    	}
    
    	f.FilteredNodes = filtered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

        private void recordNodeExecutionStarted(Node node) {
            runningNodes.add(node);
        }
    
        private void recordNodeCompleted(Node node) {
            LOGGER.debug("Node {} completed, executed: {}", node, node.isExecuted());
            waitingToStartNodes.remove(node);
            if (continueOnFailure && !node.allDependenciesComplete()) {
                // Wait for any dependencies of this node that have not started yet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation_test.go

    			Key:    "kubernetes.io/hostname",
    			Values: []string{"node1", "node1"},
    		}},
    	}}
    
    	topologyMultiValues := []api.TopologySelectorTerm{{
    		MatchLabelExpressions: []api.TopologySelectorLabelRequirement{{
    			Key:    "kubernetes.io/hostname",
    			Values: []string{"node1", "node2"},
    		}},
    	}}
    
    	topologyEmptyMatchLabelExpressions := []api.TopologySelectorTerm{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    }
    
    // Populates data struct with a single node no volume.
    // Calls AddPod() with the same node and new pod/volume.
    // Verifies node/volume exists.
    // Calls AddPod() with the same node and volume different pod.
    // Verifies the same node/volume exists, and 1 volumes to attach.
    func Test_AddPod_Positive_NewPodNodeExistsVolumeExists(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            then:
            executes(c, finalizer3)
        }
    
        def "required nodes added to the graph are executed in dependency order"() {
            given:
            def node1 = requiredNode()
            def node2 = requiredNode(node1)
            def node3 = requiredNode(node2)
            executionPlan.setScheduledWork(scheduledWork(node3, node1, node2))
    
            when:
            populateGraph()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  10. cluster/gce/windows/node-helper.sh

    # A library of helper functions and constants for Windows nodes.
    
    function get-windows-node-instance-metadata-from-file {
      local metadata=""
      metadata+="cluster-name=${KUBE_TEMP}/cluster-name.txt,"
      metadata+="cluster-location=${KUBE_TEMP}/cluster-location.txt,"
      metadata+="kube-env=${KUBE_TEMP}/windows-node-kube-env.yaml,"
      metadata+="kubelet-config=${KUBE_TEMP}/windows-node-kubelet-config.yaml,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
Back to top