Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for existingPV (0.23 sec)

  1. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks.yaml.15.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history_test.go

    			switch action := action.(type) {
    			case core.PatchActionImpl:
    				var found *apps.ControllerRevision
    				for i := range test.existing {
    					if test.revision.Name == test.existing[i].revision.Name &&
    						test.revision.Namespace == test.existing[i].revision.Namespace {
    						found = test.existing[i].revision
    						break
    					}
    				}
    				if found == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			pod:                 new(v1.Pod),
    			node:                &node1,
    			wantPreFilterStatus: framework.NewStatus(framework.Skip),
    		},
    		{
    			name: "satisfies with requiredDuringSchedulingIgnoredDuringExecution in PodAffinity using In operator that matches the existing pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // the existing object's deletionTimestamp is set, and
    // the existing object's deletionGracePeriodSeconds is 0 or nil
    func ShouldDeleteDuringUpdate(ctx context.Context, key string, obj, existing runtime.Object) bool {
    	newMeta, err := meta.Accessor(obj)
    	if err != nil {
    		utilruntime.HandleError(err)
    		return false
    	}
    	oldMeta, err := meta.Accessor(existing)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		rv:               strconv.FormatInt(math.MaxInt64, 10),
    	}, {
    		name:              "get non-existing",
    		key:               "/non-existing",
    		ignoreNotFound:    false,
    		expectNotFoundErr: true,
    	}, {
    		name:              "get non-existing, ignore not found",
    		key:               "/non-existing",
    		ignoreNotFound:    true,
    		expectNotFoundErr: false,
    		expectedOut:       &example.Pod{},
    	}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	// HTTPOverTCP represents incoming HTTP existing TCP
    	HTTPOverTCP
    	// TCPOverHTTP represents incoming TCP existing HTTP
    	TCPOverHTTP
    	// TCPOverTCP represents incoming TCP existing TCP
    	TCPOverTCP
    	// TCPOverAuto represents incoming TCP existing AUTO
    	TCPOverAuto
    	// AutoOverHTTP represents incoming AUTO existing HTTP
    	AutoOverHTTP
    	// AutoOverTCP represents incoming AUTO existing TCP
    	AutoOverTCP
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    }
    
    // OnServiceUpdate is called whenever modification of an existing
    // service object is observed.
    func (proxier *Proxier) OnServiceUpdate(oldService, service *v1.Service) {
    	if proxier.serviceChanges.Update(oldService, service) && proxier.isInitialized() {
    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            dependency);
                }
    
                Dependency existing = index.get(key);
    
                if (existing != null) {
                    String msg;
                    if (equals(existing.getVersion(), dependency.getVersion())) {
                        msg = "duplicate declaration of version " + Objects.toString(dependency.getVersion(), "(?)");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            dependency);
                }
    
                Dependency existing = index.get(key);
    
                if (existing != null) {
                    String msg;
                    if (equals(existing.getVersion(), dependency.getVersion())) {
                        msg = "duplicate declaration of version " + Objects.toString(dependency.getVersion(), "(?)");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top