Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 474 for _finalize (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

                                           /*only_one_return_value=*/false,
                                           /*allow_return_of_existing=*/true);
    
      finalize_name = GetName(regional, "_finalize");
      finalize_name =
          ExtractSingleBlockRegion(symbol_table, regional.getFinalize(),
                                   finalize_name, extern_values, worklist,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Finalize.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation finalizes the rule subject.
     * <p>
     * Finalize rules execute after {@link Mutate} rules, but before {@link Validate} rules.
     * The first parameter of the rule is the rule subject, which is mutable for the duration of the rule.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/internal/Finalizer.java

         * point, Finalizer can stop running
         */
        if (!finalizableReferenceClass.getName().equals(FINALIZABLE_REFERENCE)) {
          throw new IllegalArgumentException("Expected " + FINALIZABLE_REFERENCE + ".");
        }
    
        Finalizer finalizer = new Finalizer(finalizableReferenceClass, queue, frqReference);
        String threadName = Finalizer.class.getName();
        Thread thread = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/internal/Finalizer.java

         * point, Finalizer can stop running
         */
        if (!finalizableReferenceClass.getName().equals(FINALIZABLE_REFERENCE)) {
          throw new IllegalArgumentException("Expected " + FINALIZABLE_REFERENCE + ".");
        }
    
        Finalizer finalizer = new Finalizer(finalizableReferenceClass, queue, frqReference);
        String threadName = Finalizer.class.getName();
        Thread thread = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
            2.times {
                fails "thing", "-Pfinalizer.broken"
                result.assertTasksExecutedInOrder ":thing", ":finalizerDep", ":finalizer"
            }
        }
    
        def "finalizer can indirectly depend on the entry point finalized by it"() {
            given:
            buildFile '''
                task finalizer(type: BreakingTask) {
                    dependsOn 'finalizerDep'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. pkg/volume/util/finalizer.go

    limitations under the License.
    */
    
    package util
    
    const (
    	// PVCProtectionFinalizer is the name of finalizer on PVCs that have a running pod.
    	PVCProtectionFinalizer = "kubernetes.io/pvc-protection"
    
    	// PVProtectionFinalizer is the name of finalizer on PVs that are bound by PVCs
    	PVProtectionFinalizer = "kubernetes.io/pv-protection"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 10 21:24:35 UTC 2018
    - 874 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            then:
            executes(finalized, finalizerDependency, finalizer, dependsOnFinalizer)
        }
    
        def "finalizer tasks run as soon as possible for tasks that depend on finalized tasks"() {
            Task finalizer = task("finalizer")
            Task finalized = task("finalized", finalizedBy: [finalizer])
            Task dependsOnFinalized = task("dependsOnFinalized", dependsOn: [finalized])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/ecdsa.go

    	if err != nil {
    		return nil, err
    	}
    	k := &PublicKeyECDSA{key}
    	// Note: Because of the finalizer, any time k.key is passed to cgo,
    	// that call must be followed by a call to runtime.KeepAlive(k),
    	// to make sure k is not collected (and finalized) before the cgo
    	// call returns.
    	runtime.SetFinalizer(k, (*PublicKeyECDSA).finalize)
    	return k, nil
    }
    
    func newECKey(curve string, X, Y BigInt) (*C.GO_EC_KEY, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/runtime/mfinal_test.go

    	ch := make(chan bool, 10)
    	finalize := func(x *int) {
    		if *x != 97531 {
    			t.Errorf("finalizer %d, want %d", *x, 97531)
    		}
    		ch <- true
    	}
    
    	var finalizerTests = []struct {
    		convert   func(*int) any
    		finalizer any
    	}{
    		{func(x *int) any { return x }, func(v *int) { finalize(v) }},
    		{func(x *int) any { return Tintptr(x) }, func(v Tintptr) { finalize(v) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/ecdh.go

    	}
    
    	k := &PublicKeyECDH{curve, key, group, append([]byte(nil), bytes...)}
    	// Note: Because of the finalizer, any time k.key is passed to cgo,
    	// that call must be followed by a call to runtime.KeepAlive(k),
    	// to make sure k is not collected (and finalized) before the cgo
    	// call returns.
    	runtime.SetFinalizer(k, (*PublicKeyECDH).finalize)
    	return k, nil
    }
    
    func (k *PublicKeyECDH) Bytes() []byte { return k.bytes }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top