Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 471 for Initial (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    // Helper functions for value constraints propagations and analysis.
    // -------------------------------------------------------------------------- //
    
    // Propagates initial constraints on the values defined by the `constraints` set
    // with operations in the `root` as a starting point, using user provided set of
    // clustering policies.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

         */
        protected void discardValue() {
            assertCanMutate();
            if (isDefaultConvention()) {
                // special case: discarding value without a convention restores the initial state
                state.implicitValue(getDefaultConvention());
                value = getDefaultValue();
            } else {
                // otherwise, the convention will become the new value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    	//     then salt is the empty string.
    	//
    	// 5.  Let
    	//       M' = (0x)00 00 00 00 00 00 00 00 || mHash || salt;
    	//
    	//     M' is an octet string of length 8 + hLen + sLen with eight
    	//     initial zero octets.
    	//
    	// 6.  Let H = Hash(M'), an octet string of length hLen.
    
    	var prefix [8]byte
    
    	hash.Write(prefix[:])
    	hash.Write(mHash)
    	hash.Write(salt)
    
    	h = hash.Sum(h[:0])
    	hash.Reset()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/delete_test.go

    	pvtesting "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/testing"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    // Test single call to syncVolume, expecting recycling to happen.
    // 1. Fill in the controller with initial data
    // 2. Call the syncVolume *once*.
    // 3. Compare resulting volumes with expected volumes.
    func TestDeleteSync(t *testing.T) {
    	const gceDriver = "pd.csi.storage.gke.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        RateLimiter r = RateLimiter.create(1);
        assertTrue("Unable to acquire initial permit", r.tryAcquire());
        assertFalse("Capable of acquiring secondary permit", r.tryAcquire());
      }
    
      public void testDoubleMinValueCanAcquireExactlyOnce() {
        RateLimiter r = RateLimiter.create(Double.MIN_VALUE, stopwatch);
        assertTrue("Unable to acquire initial permit", r.tryAcquire());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/HashBiMap.java

          int expectedSize) {
        return new HashBiMap<>(expectedSize);
      }
    
      /**
       * Constructs a new bimap containing initial values from {@code map}. The bimap is created with an
       * initial capacity sufficient to hold the mappings in the specified map.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashBiMap<K, V> create(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        RateLimiter r = RateLimiter.create(1);
        assertTrue("Unable to acquire initial permit", r.tryAcquire());
        assertFalse("Capable of acquiring secondary permit", r.tryAcquire());
      }
    
      public void testDoubleMinValueCanAcquireExactlyOnce() {
        RateLimiter r = RateLimiter.create(Double.MIN_VALUE, stopwatch);
        assertTrue("Unable to acquire initial permit", r.tryAcquire());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_ppc64le.s

    	MOVD	$80,off80
    	MOVD	$96,off96
    	MOVD	$112,off112
    	MOVD	$0,R15
    
    	MOVD	R3,R10	// save initial crc
    
    	NOR	R3,R3,R3  // ^crc
    	MOVWZ	R3,R3	// 32 bits
    	VXOR	zeroes,zeroes,zeroes  // clear the V reg
    	VSPLTISW $-1,V0
    	VSLDOI	$4,V29,V0,mask_32bit
    	VSLDOI	$8,V29,V0,mask_64bit
    
    	VXOR	V8,V8,V8
    	MTVSRD	R3,VS40	// crc initial value VS40 = V8
    
    #ifdef REFLECT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/errwrap/LICENSE

    1.4. “Covered Software”
    
         means Source Code Form to which the initial Contributor has attached the
         notice in Exhibit A, the Executable Form of such Source Code Form, and
         Modifications of such Source Code Form, in each case including portions
         thereof.
    
    1.5. “Incompatible With Secondary Licenses”
         means
    
         a. that the initial Contributor has attached the notice described in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    				t.Fatal(err)
    			}
    
    			t.Log(time.Now().UTC().Format(time.RFC3339))
    			work, _ := s.LookupEnv("WORK")
    			t.Logf("$WORK=%s", work)
    
    			// With -testsum, if a go.mod file is present in the test's initial
    			// working directory, run 'go mod tidy'.
    			if *testSum != "" {
    				if updateSum(t, engine, s, a) {
    					defer func() {
    						if t.Failed() {
    							return
    						}
    						data := txtar.Format(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top