Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for finalizer (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// versions from this list.
    	// None of the versions in this list can be removed from the spec.Versions field.
    	StoredVersions []string
    }
    
    // CustomResourceCleanupFinalizer is the name of the finalizer which will delete instances of
    // a CustomResourceDefinition
    const CustomResourceCleanupFinalizer = "customresourcecleanup.apiextensions.k8s.io"
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	waitReasonChanReceive                             // "chan receive"
    	waitReasonChanSend                                // "chan send"
    	waitReasonFinalizerWait                           // "finalizer wait"
    	waitReasonForceGCIdle                             // "force gc (idle)"
    	waitReasonSemacquire                              // "semacquire"
    	waitReasonSleep                                   // "sleep"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/provision_test.go

    			[]*v1.PersistentVolume{
    				newVolumeWithFinalizers("volume11-23", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimDelete, classCopper, nil /*No Finalizer is added here since the test doesn't trigger syncVolume, instead just syncClaim*/),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// +optional
    	// +listType=atomic
    	StoredVersions []string `json:"storedVersions" protobuf:"bytes,3,rep,name=storedVersions"`
    }
    
    // CustomResourceCleanupFinalizer is the name of the finalizer which will delete instances of
    // a CustomResourceDefinition
    const CustomResourceCleanupFinalizer = "customresourcecleanup.apiextensions.k8s.io"
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation.go

    	// update.  This is important here because we used to allow DNS subdomain
    	// for name, but that can't actually create pods.  The only reasonable
    	// thing to do it delete such an instance, but if there is a finalizer, it
    	// would need to pass update validation.  Name can't change anyway.
    	allErrs := apivalidation.ValidateObjectMetaUpdate(&statefulSet.ObjectMeta, &oldStatefulSet.ObjectMeta, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// +optional
    	// +listType=atomic
    	StoredVersions []string `json:"storedVersions" protobuf:"bytes,3,rep,name=storedVersions"`
    }
    
    // CustomResourceCleanupFinalizer is the name of the finalizer which will delete instances of
    // a CustomResourceDefinition
    const CustomResourceCleanupFinalizer = "customresourcecleanup.apiextensions.k8s.io"
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

            }
    
            @Override
            public void disallowChanges() {
                // Finalized, so already cannot change
            }
    
            @Override
            public void finalizeOnNextGet() {
                // Finalized already
            }
    
            @Override
            public void disallowUnsafeRead() {
                // Finalized already so read is safe
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    		ret.RangeTime[name] += lastTs.Sub(ts)
    	}
    	return ret
    }
    
    // finalize is called when processing a goroutine end event or at
    // the end of trace processing. This finalizes the execution stat
    // and any active regions in the goroutine, in which case trigger is nil.
    func (g *GoroutineSummary) finalize(lastTs Time, trigger *Event) {
    	if trigger != nil {
    		g.EndTime = trigger.Time()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

                strings << 3
            }
    
            @Finalize
            static void finalize1(List<String> strings) {
                strings << "2"
            }
    
            @Mutate
            static void mutate1(List<String> strings) {
                strings << "1"
            }
        }
    
        def "finalize rules are registered"() {
            given:
            def registry = Mock(ModelRegistry)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. tests/test_dependency_contextmanager.py

            state["/async_raise"] = "asyncgen raise finalized"
    
    
    def generator_state_try(state: Dict[str, str] = Depends(get_state)):
        state["/sync_raise"] = "generator raise started"
        try:
            yield state["/sync_raise"]
        except SyncDependencyError:
            errors.append("/sync_raise")
            raise
        finally:
            state["/sync_raise"] = "generator raise finalized"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top