Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,154 for existingPV (0.16 sec)

  1. 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)
  2. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AbstractAccessTrackingMapTest.groovy

            'existing' | 'existingValue'    | 'existingValue' | 'other'       | 'otherValue'       | 'otherValue'   | true
            'existing' | 'nonexistingValue' | 'existingValue' | 'other'       | 'otherValue'       | 'otherValue'   | false
            'existing' | 'nonexistingValue' | 'existingValue' | 'missing'     | 'missingValue'     | null           | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/containers-delegated-properties/kotlin/build.gradle.kts

    }
    
    // tag::delegated-properties[]
    val check by tasks.existing
    val myTask1 by tasks.registering
    
    val compileJava by tasks.existing(JavaCompile::class)
    val myCopy1 by tasks.registering(Copy::class)
    
    val assemble by tasks.existing {
        dependsOn(myTask1)  // <1>
    }
    val myTask2 by tasks.registering {
        description = "Some meaningful words"
    }
    
    val test by tasks.existing(Test::class) {
        testLogging.showStackTraces = true
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/core/service/allocator/storage/storage.go

    			existing := input.(*api.RangeAllocation)
    			if len(existing.ResourceVersion) == 0 {
    				return nil, fmt.Errorf("cannot allocate resources of type %s at this time", e.resource.String())
    			}
    			if existing.ResourceVersion != e.last {
    				if err := e.alloc.Restore(existing.Range, existing.Data); err != nil {
    					return nil, err
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/options/security_test.go

    			},
    			expected: false,
    		},
    		{
    			name:     "existing cert paths",
    			paths:    []string{cert.Name(), cert.Name(), cert.Name()},
    			expected: true,
    		},
    		{
    			name:     "mixed non-existing and existing cert paths",
    			paths:    []string{cert.Name(), "/this-is-a-nonexisting-path-1", "/this-is-a-nonexisting-path-2"},
    			expected: false,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 18:31:36 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top