Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,365 for finalizerB (0.38 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

    significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/transaction.go

    limitations under the License.
    */
    
    package storage
    
    // transaction represents something that may need to be finalized on success or
    // failure of the larger transaction.
    type transaction interface {
    	// Commit tells the transaction to finalize any changes it may have
    	// pending.  This cannot fail, so errors must be handled internally.
    	Commit()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 11 17:49:37 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

    significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                    @Defaults
                    void defaultName(Thing t) {
                        t.name = 'default'
                    }
    
                    @Finalize
                    void finalizeName(Thing t) {
                        assert t.name == 'p1'
                        t.name = 'p1 finalized'
                    }
                }
    
                apply plugin: MyPlugin
    
                model {
                    tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

        Initialize(ModelNode.State.Initialized, true), // Mutation action provided when an element is defined
        Mutate(ModelNode.State.Mutated, true), // Customisations
        Finalize(ModelNode.State.Finalized, true), // Post customisation default values
        Validate(ModelNode.State.SelfClosed, true); // Post mutation validations
    
        private final ModelNode.State target;
        private final boolean subjectViewAvailable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/aes.go

    		return nil, fail("EVP_AEAD_CTX_init")
    	}
    	// Note: Because of the finalizer, any time g.ctx is passed to cgo,
    	// that call must be followed by a call to runtime.KeepAlive(g),
    	// to make sure g is not collected (and finalized) before the cgo
    	// call returns.
    	runtime.SetFinalizer(g, (*aesGCM).finalize)
    	if g.NonceSize() != gcmStandardNonceSize {
    		panic("boringcrypto: internal confusion about nonce size")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package finalizer
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. pkg/cache/ttlCache.go

    		c.stopEvicter = make(chan bool, 1)
    		c.evicterTerminated.Add(1)
    		go c.evicter(evictionInterval)
    
    		// We return a 'see-through' wrapper for the real object such that
    		// the finalizer can trigger on the wrapper. We can't set a finalizer
    		// on the main cache object because it would never fire, since the
    		// evicter goroutine is keeping it alive
    		result := &ttlWrapper{c}
    		runtime.SetFinalizer(result, func(w *ttlWrapper) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher_test.go

    			expectedLabels: namespace1Labels,
    		},
    		{
    			name:           "request is for namespace/finalizer",
    			attr:           admission.NewAttributesRecord(nil, nil, schema.GroupVersionKind{}, namespace1.Name, "mock-name", schema.GroupVersionResource{Resource: "namespaces"}, "finalizers", admission.Create, &metav1.CreateOptions{}, false, nil),
    			expectedLabels: namespace1Labels,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller_test.go

    	claim = claim.DeepCopy()
    	// As far the controller is concerned, a claim was allocated by us if it has
    	// this finalizer. For testing we don't need to update the allocation result.
    	claim.Finalizers = append(claim.Finalizers, resourcev1alpha2.Finalizer)
    	return claim
    }
    
    func reserveClaim(claim *resourcev1alpha2.ResourceClaim, pod *v1.Pod) *resourcev1alpha2.ResourceClaim {
    	claim = claim.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top