Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 142 for finalizer (0.12 sec)

  1. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * separate method to make it somewhat more likely to be unreachable.
       */
      private static void createUnreachableLatchFinalizer(CountDownLatch latch) {
        Object unused =
            new Object() {
              @SuppressWarnings("removal") // b/260137033
              @Override
              protected void finalize() {
                latch.countDown();
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. 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)
  3. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    						SignerName: "panda.com/foo",
    					},
    				},
    				operation: admission.Update,
    			},
    			allowed: true,
    		},
    		{
    			description:                      "should always allow finalizer update",
    			clusterTrustBundleFeatureEnabled: true,
    			authzErr:                         errors.New("broken"),
    			attributes: &testAttributes{
    				resource: certificatesapi.Resource("clustertrustbundles"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	//
    	// The job controller creates pods with a finalizer. When a pod terminates
    	// (succeeded or failed), the controller does three steps to account for it
    	// in the job status:
    	//
    	// 1. Add the pod UID to the corresponding array in this field.
    	// 2. Remove the pod finalizer.
    	// 3. Remove the pod UID from the array while increasing the corresponding
    	//     counter.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// The job controller creates pods with a finalizer. When a pod terminates
    	// (succeeded or failed), the controller does three steps to account for it
    	// in the job status:
    	//
    	// 1. Add the pod UID to the arrays in this field.
    	// 2. Remove the pod finalizer.
    	// 3. Remove the pod UID from the arrays while increasing the corresponding
    	//     counter.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/batch/v1/generated.proto

      //
      // The job controller creates pods with a finalizer. When a pod terminates
      // (succeeded or failed), the controller does three steps to account for it
      // in the job status:
      //
      // 1. Add the pod UID to the arrays in this field.
      // 2. Remove the pod finalizer.
      // 3. Remove the pod UID from the arrays while increasing the corresponding
      //     counter.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(":cPing")
                run ":cPing", ":aPing"
            }
        }
    
        @Timeout(30)
        def "handles an exception thrown while walking the task graph when a finalizer is present"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                class BrokenTask extends DefaultTask {
                    @OutputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:\n\n1. Add the pod UID to the arrays in this field. 2. Remove the pod finalizer. 3. Remove the pod UID from the arrays while increasing the corresponding\n    counter.\n\nOld jobs might not be tracked using this field, in which case...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. doc/go_mem.html

    and Java’s <code>volatile</code> variables.
    </p>
    
    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.proto

      //
      // The job controller creates pods with a finalizer. When a pod terminates
      // (succeeded or failed), the controller does three steps to account for it
      // in the job status:
      //
      // 1. Add the pod UID to the arrays in this field.
      // 2. Remove the pod finalizer.
      // 3. Remove the pod UID from the arrays while increasing the corresponding
      //     counter.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top