Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 005 (0.05 sec)

  1. test/fixedbugs/bug447.go

    	program = strings.Replace(program, "$FUNCS", funcs.String(), 1)
    	fmt.Print(program)
    }
    
    const testSegment = `
    	f$F := $F(f)
    	if math.Abs(float64(f$F) - f) < 0.05 {
    		if v := $I(f$F); v != $I(i) {
    			fmt.Printf("$I($F(%f)) = %v, expected %v\n", f, v, i)
    		}
    	}`
    
    const testFunc =
    `func test$I(f float64, i int64) {
    	if i != int64($I(i))$TEST {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/fold_constant_transpose.mlir

      return %1 : tensor<3x2xf32>
    }
    // CHECK-DAG: %[[CONST_0:.+]] = stablehlo.constant dense<{{\[\[}}0.000000e+00, 3.000000e+00], [1.000000e+00, 4.000000e+00], [2.000000e+00, 5.000000e+00]]> : tensor<3x2xf32>
    // CHECK-NOT: transpose
    // CHECK: return %[[CONST_0]] : tensor<3x2xf32>
    
    // -----
    
    // CHECK-LABEL: transpose_simple_4d
    func.func @transpose_simple_4d() -> tensor<5x2x3x4xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 08:06:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/MasterExpirationStrategy.java

            final LowMemoryDaemonExpirationStrategy lowMemoryDaemonExpirationStrategy = new LowMemoryDaemonExpirationStrategy(0.05);
            listenerManager.addListener(lowMemoryDaemonExpirationStrategy);
            strategies.add(new AllDaemonExpirationStrategy(ImmutableList.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_without_identity.pbtxt

        key: "value"
        value {
          tensor {
            dtype: DT_FLOAT
            tensor_shape {
              dim {
                size: 186
              }
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_without_identity_4bit.pbtxt

        key: "value"
        value {
          tensor {
            dtype: DT_FLOAT
            tensor_shape {
              dim {
                size: 186
              }
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

    import java.math.BigDecimal;
    
    public interface PerformanceFlakinessDataProvider {
        /**
         * For the scenario whose flakiness rate is higher than 5%, we see it as "flaky scenario"
         */
        double FLAKY_THRESHOLD = 0.05;
    
        /**
         * Flakiness rate of a scenario is the number of times the scenario had a regression of an improvement with more than 99.9%
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer_test.go

    					// Just make sure it's not going too crazy.
    					assertInEpsilon(t, "GC utilization", c[n-1].gcUtilization, c[n-2].gcUtilization, 0.05)
    					assertInEpsilon(t, "GC utilization", c[n-1].gcUtilization, c[11].gcUtilization, 0.05)
    				}
    			},
    		},
    		{
    			// This test sets a slow allocation rate and a small heap (close to the minimum heap size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/lockedfile/lockedfile_plan9.go

    		time.Sleep(nextSleep)
    
    		nextSleep += nextSleep
    		if nextSleep > maxSleep {
    			nextSleep = maxSleep
    		}
    		// Apply 10% jitter to avoid synchronizing collisions.
    		nextSleep += time.Duration((0.1*rand.Float64() - 0.05) * float64(nextSleep))
    	}
    }
    
    func closeFile(f *os.File) error {
    	return f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			r := rng.Float32()
    			n := rng.Float32()
    			policyRule, matchingRDigests, matchingNDigests, skippingRDigests, skippingNDigests := genPolicyRuleWithSubjects(t, rng, fmt.Sprintf("t%d", i), rng.Float32() < 0.2, r < 0.10, n < 0.10, r < 0.05, n < 0.05)
    			if testDebugLogs {
    				t.Logf("policyRule=%s, mrd=%#+v, mnd=%#+v, srd=%#+v, snd=%#+v", fcfmt.Fmt(policyRule), matchingRDigests, matchingNDigests, skippingRDigests, skippingNDigests)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. docs/features/caching.md

    server behaviour when ambiguous.
    
    # Basic Usage
    
    ```kotlin
      private val client: OkHttpClient = OkHttpClient.Builder()
          .cache(Cache(
              directory = File(application.cacheDir, "http_cache"),
              // $0.05 worth of phone storage in 2020
              maxSize = 50L * 1024L * 1024L // 50 MiB
          ))
          .build()
    ```
    
    ## EventListener events 
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top