Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 584 for finalizerB (0.37 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    		if err != nil {
    			return allWarnings
    		}
    		newAdded = newAdded.Difference(sets.NewString(oldObjAccessor.GetFinalizers()...))
    	}
    
    	for _, finalizer := range newAdded.List() {
    		allWarnings = append(allWarnings, validateKubeFinalizerName(finalizer, fldPath)...)
    	}
    
    	return allWarnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (customResourceStrategy) Canonicalize(obj runtime.Object) {
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/internal/weak/pointer.go

    // Returns nil if the original value for the weak pointer was reclaimed by
    // the garbage collector.
    // If a weak pointer points to an object with a finalizer, then Strong will
    // return nil as soon as the object's finalizer is queued for execution.
    func (p Pointer[T]) Strong() *T {
    	return (*T)(runtime_makeStrongFromWeak(p.u))
    }
    
    // Implemented in runtime.
    
    //go:linkname runtime_registerWeakPointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaimTemplate.yaml

    kind: ResourceClaimTemplate
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                    void configureFinalizerTask(@Path("tasks.finalizer") EchoTask task) {
                        task.message = "configured"
                    }
    
                    @Mutate
                    void addTasks(ModelMap<Task> tasks) {
                        tasks.create("requested") {
                            dependsOn "dependency"
                            finalizedBy "finalizer"
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - endpoints
        - services
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - services/finalizers
        verbs:
        - update
      - apiGroups:
        - ""
        resources:
        - endpoints/finalizers
        verbs:
        - update
      - apiGroups:
        - discovery.k8s.io
        resources:
        - endpointslices
        verbs:
        - create
        - delete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        void setFinalizedBy(Iterable<?> finalizedBy);
    
        /**
         * <p>Returns tasks that finalize this task.</p>
         *
         * @return The tasks that finalize this task. Returns an empty set if there are no finalising tasks for this task.
         */
        @Internal
        TaskDependency getFinalizedBy();
    
        /**
         * <p>Specifies that this task should run after all of the supplied tasks.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__networking.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: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    		t.Errorf("Removing finalizer: %v", err)
    	}
    
    	update = pods[1].DeepCopy()
    	update.Finalizers = nil
    	update.DeletionTimestamp = &metav1.Time{Time: time.Now()}
    	update.ResourceVersion = "1"
    	err = clientset.Tracker().Update(podsResource, update, update.Namespace)
    	if err != nil {
    		t.Errorf("Removing finalizer and setting deletion timestamp: %v", err)
    	}
    
    	// Preserve the finalizer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__coordination.k8s.io__v1_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: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			claim.Finalizers = append(claim.Finalizers, resourcev1alpha2.Finalizer)
    			if _, err := pl.clientset.ResourceV1alpha2().ResourceClaims(claim.Namespace).Update(ctx, claim, metav1.UpdateOptions{}); err != nil {
    				return nil, fmt.Errorf("add finalizer: %v", err)
    			}
    		}
    	}
    
    	// The claim might be stale, for example because the claim can get shared and some
    	// other goroutine has updated it in the meantime. We therefore cannot use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top