Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for updatedNodes (0.35 sec)

  1. pkg/kubelet/kubelet_node_status.go

    	}
    	kl.lastStatusReportTime = kl.clock.Now()
    	kl.setLastObservedNodeAddresses(updatedNode.Status.Addresses)
    
    	readyIdx, readyCondition := nodeutil.GetNodeCondition(&updatedNode.Status, v1.NodeReady)
    	if readyIdx >= 0 && readyCondition.Status == v1.ConditionTrue {
    		kl.nodeStartupLatencyTracker.RecordNodeReady()
    	}
    
    	return updatedNode, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_linux_test.go

    		},
    	}
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            nodeName,
    			ResourceVersion: "1",
    		},
    	}
    	updatedNode := node.DeepCopy()
    	updatedNode.Spec.PodCIDRs = expected
    	updatedNode.Spec.PodCIDR = expected[0]
    
    	// start with the new node
    	client := clientsetfake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            and:
            originalUpdatedModel.javaLanguageSettings.languageLevel == JavaVersion.VERSION_11
    
            when:
            executer.withArguments(ENABLE_CLI)
            def updatedModel = fetchModel(IdeaProject)
    
            then:
            fixture.assertStateUpdated {
                fileChanged("a/build.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    		return nil, fmt.Errorf("failed to apply strategic merge patch %q on node %#v: %v",
    			patch, originalNode, err)
    	}
    	updatedNode := &v1.Node{}
    	if err := json.Unmarshal(updated, updatedNode); err != nil {
    		return nil, fmt.Errorf("failed to unmarshal updated node %q: %v", updated, err)
    	}
    	return updatedNode, nil
    }
    
    func hasPatchAction(actions []clienttesting.Action) clienttesting.Action {
    	for _, action := range actions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		st.MakePod().Name("p3").Namespace("ns4").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node1").Obj(),
    	}
    	var updatedPods = make([]*v1.Pod, len(pods))
    	updatedPods[0] = pods[0].DeepCopy()
    	updatedPods[1] = pods[1].DeepCopy()
    	updatedPods[3] = pods[3].DeepCopy()
    
    	tests := []struct {
    		name                   string
    		podsToAdd              []*v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top