Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,056 for existingPV (0.28 sec)

  1. pkg/controller/podgc/gc_controller_test.go

    		{
    			name: "nodes present in lister",
    			initialInformerNodes: []*v1.Node{
    				testutil.NewNode("existing1"),
    				testutil.NewNode("existing2"),
    			},
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "existing1", v1.PodRunning),
    				makePod("b", "existing2", v1.PodFailed),
    				makePod("c", "existing2", v1.PodSucceeded),
    			},
    			itemsInQueue: 0,
    		},
    		{
    			name: "nodes present in client",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            (Map<?, ?>) map == [existing: 'newValue', other: 'otherValue']
        }
    
        def "method replaceAll reports access to every item"() {
            when:
            getMapUnderTestToWrite().replaceAll((k, v) -> {
                if (k == 'existing') {
                    return 'newValue'
                }
                return v
            })
    
            then:
            1 * onAccess.accept('existing', 'existingValue')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/instancecount_test.go

    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    			ip:            "1.2.3.4",
    			endpointPorts: []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}},
    			initialState:  nil,
    			expectCreate:  makeEndpointsArray("foo", []string{"1.2.3.4"}, []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}}),
    		},
    		{
    			testName:      "existing endpoints satisfy",
    			serviceName:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  4. cmd/bucket-replication_test.go

    		expectedSync: false,
    	},
    	{ // 2. existing object replication config enabled, no versioning
    		name:         "existing object replication config enabled, no versioning",
    		info:         ObjectInfo{Size: 100},
    		rcfg:         replicationConfig{Config: &configs[0]},
    		expectedSync: false,
    	},
    	{ // 3. existing object replication config enabled, versioning suspended
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller_test.go

    		Reason:  reason,
    		Message: message,
    	}
    }
    
    func TestSync(t *testing.T) {
    	tests := []struct {
    		name string
    
    		in                            *apiextensionsv1.CustomResourceDefinition
    		existing                      []*apiextensionsv1.CustomResourceDefinition
    		expectedNames                 apiextensionsv1.CustomResourceDefinitionNames
    		expectedNameConflictCondition apiextensionsv1.CustomResourceDefinitionCondition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 15.7K bytes
    - Viewed (0)
  6. pkg/kubelet/config/config.go

    	existing.Spec = ref.Spec
    	existing.Labels = ref.Labels
    	existing.DeletionTimestamp = ref.DeletionTimestamp
    	existing.DeletionGracePeriodSeconds = ref.DeletionGracePeriodSeconds
    	existing.Status = ref.Status
    	updateAnnotations(existing, ref)
    
    	// 2. this is an graceful delete
    	if ref.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			},
    			allocatedCIDRs:        nil,
    			expectedAllocatedCIDR: nil,
    			ctrlCreateFail:        true,
    		},
    		{
    			description: "fail, dualstack node allocating from non existing cidr",
    
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node0",
    						},
    						Spec: v1.NodeSpec{
    							PodCIDRs: []string{"10.10.0.1/24", "a00::/86"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                        Object key = getPluginKey().apply(element);
                        Plugin existing = master.get(key);
                        if (existing != null) {
                            existing = mergePlugin(existing, element, sourceDominant, context);
                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin: true,
    		},
    		{
    			name:              "specified existing CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "list.conflist",
    			expectedConfName:  "list.conflist",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (.conf to .conflist)",
    			chainedCNIPlugin:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            then:
            result
            1 * listener.onAccess(EXISTING_KEY, EXISTING_VALUE)
            1 * listener.onAccess('existing', 'existingStringValue')
            1 * listener.onAccess('keyWithNonStringValue', NON_STRING_VALUE)
            1 * listener.onRemove(EXISTING_KEY)
            1 * listener.onRemove('existing')
            1 * listener.onRemove('keyWithNonStringValue')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top