Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 135 for NodeV1 (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	sc := clienttest.NewWriter[*corev1.Service](t, s.client)
    	pod1 := generatePod("127.0.0.1", "pod1", testNS, "sa1", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod1)
    	fx.WaitOrFail(t, "xds")
    
    	pod2 := generatePod("127.0.0.2", "pod2", testNS, "sa2", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod2)
    	fx.WaitOrFail(t, "xds")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	dir, err := os.MkdirTemp("", "testpcalign")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    	tmpfile := filepath.Join(dir, "test.s")
    	tmpout := filepath.Join(dir, "test.o")
    
    	code1 := []byte("TEXT ·foo(SB),$0-0\nMOVD $0, R0\nPCALIGN $8\nMOVD $1, R1\nRET\n")
    	code2 := []byte("TEXT ·foo(SB),$0-0\nMOVD $0, R0\nPCALIGN $16\nMOVD $2, R2\nRET\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	}
    
    	verifyVolumeToAttach(t, volumesToAttach, nodeName, generatedVolumeName, string(volumeName))
    }
    
    // Populates data struct with pod/volume/node1.
    // Calls DeleteNode() to delete the pod/volume/node2.
    // Verifies volume still exists, and one volumes to attach.
    func Test_DeletePod_Positive_NodeDoesNotExist(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)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	node0, err := fakeNodeHandler.Get(ctx, "node0", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node0...")
    		return
    	}
    	node1, err := fakeNodeHandler.Get(ctx, "node1", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node1...")
    		return
    	}
    
    	if originalTaint != nil && !taintutils.TaintExists(node0.Spec.Taints, originalTaint) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	asw := NewActualStateOfWorld(volumePluginMgr)
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    
    	node1Name := types.NodeName("node1-name")
    	node2Name := types.NodeName("node2-name")
    	devicePath := "fake/device/path"
    
    	// Act
    	logger, _ := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			nodename := "node01"
    			controlPlaneNode := &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: nodename,
    					Labels: map[string]string{
    						v1.LabelHostname: nodename,
    					},
    				},
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 14:22:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    			},
    			claimWithAnnotation(volume.AnnSelectedNode, "node1",
    				newClaimArray("claim11-23", "uid11-23", "1Gi", "", v1.ClaimPending, &classCopper)),
    			claimWithAnnotation(volume.AnnSelectedNode, "node1",
    				newClaimArray("claim11-23", "uid11-23", "1Gi", "", v1.ClaimPending, &classCopper, volume.AnnStorageProvisioner, volume.AnnBetaStorageProvisioner)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. pkg/registry/storage/csistoragecapacity/strategy_test.go

    		NodeTopology: &metav1.LabelSelector{
    			MatchExpressions: []metav1.LabelSelectorRequirement{
    				{
    					Key:      "node",
    					Operator: metav1.LabelSelectorOpIn,
    					Values: []string{
    						"node1",
    					},
    				},
    			},
    		},
    		Capacity: &mib,
    	}
    	if capacityStr != "" {
    		capacityQuantity := resource.MustParse(capacityStr)
    		c.Capacity = &capacityQuantity
    	}
    	return c
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            given:
            def node1 = requiredNode()
            def node2 = requiredNode(node1)
            def node3 = requiredNode(node2)
            executionPlan.setScheduledWork(scheduledWork(node3, node1, node2))
    
            when:
            populateGraph()
    
            then:
            executesNodes(node1, node2, node3)
        }
    
        def "notifies listener when task is executed"() {
    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. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

                CycleDetectingLockFactory.class.getName(),
                ExampleStackTrace.class.getName(),
                LockGraphNode.class.getName());
    
        ExampleStackTrace(LockGraphNode node1, LockGraphNode node2) {
          super(node1.getLockName() + " -> " + node2.getLockName());
          StackTraceElement[] origStackTrace = getStackTrace();
          for (int i = 0, n = origStackTrace.length; i < n; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
Back to top