Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 183 for deltaY (1.14 sec)

  1. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        boolean[] VALUES = BooleansTest.VALUES;
        VALUES = Booleans.concat(VALUES, VALUES);
    
        for (int delta : new int[] {+1, 0, -1}) {
          for (int i = 0; i < VALUES.length; i++) {
            List<Boolean> list = Booleans.asList(VALUES).subList(0, i);
            Collection<Boolean> misleadingSize = Helpers.misleadingSizeCollection(delta);
            misleadingSize.addAll(list);
            boolean[] arr = Booleans.toArray(misleadingSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

      (convertIntAttrTo32Bit $axis))>;
    def LegalizePow : Pat<(TF_PowOp $x, $y), (TFL_PowOp $x, $y)>;
    def LegalizeRange : Pat<(TF_RangeOp $start, $limit, $delta),
                            (TFL_RangeOp $start, $limit, $delta)>;
    def LegalizeRelu6 : Pat<(TF_Relu6Op $arg), (TFL_Relu6Op $arg)>;
    def LegalizeRelu : Pat<(TF_ReluOp $arg), (TFL_ReluOp $arg)>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/jwks_resolver_test.go

    	}
    
    	retry.UntilOrFail(t, func() bool {
    		pk, _ := r.GetPublicKey("", mockCertURL, testRequestTimeout)
    		return test.JwtPubKey2 == pk
    	}, retry.Delay(time.Millisecond))
    	r.Close()
    
    	i := 0
    	r.keyEntries.Range(func(_ any, _ any) bool {
    		i++
    		return true
    	})
    
    	expectedEntries := 1
    	if i != expectedEntries {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    	requestTime, err := time.Parse(time.RFC3339, requestTimeStr)
    	if err != nil {
    		return errMalformedAuth
    	}
    	utcNow := UTCNow()
    	delta := requestTime.Sub(utcNow)
    	if delta < 0 {
    		delta *= -1
    	}
    	if delta > DefaultSkewTime {
    		return errSkewedAuthTime
    	}
    
    	return nil
    }
    
    // IsAuthValid - To authenticate and verify the time difference.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. src/net/dial_test.go

    	defer func() { testHookDialTCP = origTestHookDialTCP }()
    	testHookDialTCP = slowDialTCP
    
    	var testCases = []struct {
    		dualstack     bool
    		delay         time.Duration
    		expectElapsed time.Duration
    	}{
    		// Use a very brief delay, which should fallback immediately.
    		{true, 1 * time.Nanosecond, 0},
    		// Use a 200ms explicit timeout.
    		{true, 200 * time.Millisecond, 200 * time.Millisecond},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/ShortsTest.java

      }
    
      public void testToArray_threadSafe() {
        for (int delta : new int[] {+1, 0, -1}) {
          for (int i = 0; i < VALUES.length; i++) {
            List<Short> list = Shorts.asList(VALUES).subList(0, i);
            Collection<Short> misleadingSize = Helpers.misleadingSizeCollection(delta);
            misleadingSize.addAll(list);
            short[] arr = Shorts.toArray(misleadingSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    				tc.host, tc.domain, domain, hostOnly,
    				tc.wantDomain, tc.wantHostOnly)
    		}
    	}
    }
    
    // expiresIn creates an expires attribute delta seconds from tNow.
    func expiresIn(delta int) string {
    	t := tNow.Add(time.Duration(delta) * time.Second)
    	return "expires=" + t.Format(time.RFC1123)
    }
    
    // mustParseURL parses s to a URL and panics on error.
    func mustParseURL(s string) *url.URL {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

      }
    
      public void testToArray_threadSafe() {
        for (int delta : new int[] {+1, 0, -1}) {
          for (int i = 0; i < VALUES.length; i++) {
            List<Double> list = Doubles.asList(VALUES).subList(0, i);
            Collection<Double> misleadingSize = Helpers.misleadingSizeCollection(delta);
            misleadingSize.addAll(list);
            double[] arr = Doubles.toArray(misleadingSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

      }
    
      public void testToArray_threadSafe() {
        for (int delta : new int[] {+1, 0, -1}) {
          for (int i = 0; i < VALUES.length; i++) {
            List<Float> list = Floats.asList(VALUES).subList(0, i);
            Collection<Float> misleadingSize = Helpers.misleadingSizeCollection(delta);
            misleadingSize.addAll(list);
            float[] arr = Floats.toArray(misleadingSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/DoublesTest.java

      }
    
      public void testToArray_threadSafe() {
        for (int delta : new int[] {+1, 0, -1}) {
          for (int i = 0; i < VALUES.length; i++) {
            List<Double> list = Doubles.asList(VALUES).subList(0, i);
            Collection<Double> misleadingSize = Helpers.misleadingSizeCollection(delta);
            misleadingSize.addAll(list);
            double[] arr = Doubles.toArray(misleadingSize);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top