Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 899 for finalizerB (0.18 sec)

  1. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        assertNotNull(getClass().getResource("internal/Finalizer.class"));
      }
    
      public void testFinalizeClassHasNoNestedClasses() throws Exception {
        // Ensure that the Finalizer class has no nested classes.
        // See https://code.google.com/p/guava-libraries/issues/detail?id=1505
        assertEquals(Collections.emptyList(), Arrays.asList(Finalizer.class.getDeclaredClasses()));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/protectionutil/utils.go

    func IsDeletionCandidate(obj metav1.Object, finalizer string) bool {
    	return obj.GetDeletionTimestamp() != nil && slice.ContainsString(obj.GetFinalizers(),
    		finalizer, nil)
    }
    
    // NeedToAddFinalizer checks if need to add finalizer to object
    func NeedToAddFinalizer(obj metav1.Object, finalizer string) bool {
    	return obj.GetDeletionTimestamp() == nil && !slice.ContainsString(obj.GetFinalizers(),
    		finalizer, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 17 14:24:42 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/DefaultPlannedTask.java

        private final List<TaskIdentity> shouldRunAfter;
        private final List<TaskIdentity> finalizers;
    
        public DefaultPlannedTask(
            TaskIdentity taskIdentity,
            List<? extends NodeIdentity> nodeDependencies,
            List<TaskIdentity> mustRunAfter,
            List<TaskIdentity> shouldRunAfter,
            List<TaskIdentity> finalizers
        ) {
            this.taskIdentity = taskIdentity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 14:29:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. pkg/registry/core/namespace/strategy.go

    	hasKubeFinalizer := false
    	for i := range namespace.Spec.Finalizers {
    		if namespace.Spec.Finalizers[i] == api.FinalizerKubernetes {
    			hasKubeFinalizer = true
    			break
    		}
    	}
    	if !hasKubeFinalizer {
    		if len(namespace.Spec.Finalizers) == 0 {
    			namespace.Spec.Finalizers = []api.FinalizerName{api.FinalizerKubernetes}
    		} else {
    			namespace.Spec.Finalizers = append(namespace.Spec.Finalizers, api.FinalizerKubernetes)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Namespace.yaml

    apiVersion: v1
    kind: Namespace
    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: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Namespace.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/NodeGroup.java

     *     </li>
     *     <li>A finalizer node. Each finalizer is treated as its own node group.</li>
     * </ul>
     *
     * <p>A node may be included in more than one group, for example when it is reachable from both a requested task and a finalizer.</p>
     *
     * <p>The groups that the node belongs to can affect how the node is scheduled relative to other nodes in the graph.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 19:58:07 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/weak/pointer_test.go

    	}
    
    	// Wait for the finalizer to run.
    	<-done
    
    	// The weak pointer should still be nil after the finalizer runs.
    	runtime.GC()
    	if wt.Strong() != nil {
    		t.Errorf("weak pointer is non-nil even after finalization: %v", wt)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.Namespace.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Namespace.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top