Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 783 for 20000 (0.05 sec)

  1. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

      LOG_FIRST_N(INFO, 1)
          << "Finish Node Expansion Passes. Rewrite the op to call function: "
          << fname;
    
      return absl::OkStatus();
    }
    
    REGISTER_REWRITE(EagerOpRewriteRegistry::POST_PLACEMENT, 20000,
                     CompositeOpExpansion);
    
    }  // namespace tfr
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("9999999999999999999999999999999999999G").isInteger() // returns false
    // quantity("50k").asInteger() == 50000 // returns true
    // quantity("50k").sub(20000).asApproximateFloat() == 30000 // returns true
    //
    // Arithmetic
    //
    //   - sign: Returns `1` if the quantity is positive, `-1` if it is negative. `0` if it is zero
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

      public void testAsMap_containsValue() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterWrite(20000, TimeUnit.MILLISECONDS)
                .ticker(fakeTicker)
                .build();
    
        cache.put(654, 2675);
        fakeTicker.advance(10000, TimeUnit.MILLISECONDS);
        cache.put(2456, 56);
        cache.put(2, 15);
    
        fakeTicker.advance(10001, TimeUnit.MILLISECONDS);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_version.txt

    cmp go.mod go.mod.orig
    
    ! go mod tidy -go=0.9
    stderr '^invalid value "0.9" for flag -go: expecting a Go version like "'$goversion'"$'
    
    ! go mod tidy -go=2000.0
    stderr '^invalid value "2000.0" for flag -go: maximum supported Go version is '$goversion'$'
    
    
    # Supported versions should change the go.mod file to be tidy according to the
    # indicated version.
    
    go mod tidy -go=1.15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

        public JavaModuleDetector(FileContentCacheFactory cacheFactory, FileCollectionFactory fileCollectionFactory) {
            this.cache = cacheFactory.newCache("java-modules", 20000, new ModuleInfoLocator(), new BaseSerializerFactory().getSerializerFor(Boolean.class));
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/metrics/client_test.go

    	}
    	tc.runTest(t)
    }
    
    func TestRESTClientExternal(t *testing.T) {
    	tc := restClientTestCase{
    		desiredMetricValues: PodMetricsInfo{
    			"external-val-0": {Value: 10000}, "external-val-1": {Value: 20000}, "external-val-2": {Value: 10000},
    		},
    		metricSelector:       &metav1.LabelSelector{MatchLabels: map[string]string{"label": "value"}},
    		metricName:           "external",
    		targetTimestamp:      1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

      public void testAsMap_containsValue() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterWrite(20000, TimeUnit.MILLISECONDS)
                .ticker(fakeTicker)
                .build();
    
        cache.put(654, 2675);
        fakeTicker.advance(10000, TimeUnit.MILLISECONDS);
        cache.put(2456, 56);
        cache.put(2, 15);
    
        fakeTicker.advance(10001, TimeUnit.MILLISECONDS);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 15K bytes
    - Viewed (0)
  8. pkg/apis/discovery/validation/validation.go

    	)
    	supportedPortProtocols = sets.NewString(
    		string(api.ProtocolTCP),
    		string(api.ProtocolUDP),
    		string(api.ProtocolSCTP),
    	)
    	maxTopologyLabels = 16
    	maxAddresses      = 100
    	maxPorts          = 20000
    	maxEndpoints      = 1000
    	maxZoneHints      = 8
    )
    
    // ValidateEndpointSliceName can be used to check whether the given endpoint
    // slice name is valid. Prefix indicates this name will be used as part of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 08:49:15 UTC 2021
    - 7.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

         * 8. We expect the test thread's interrupt state to be false.
         */
        InterruptionUtil.requestInterruptIn(200, TimeUnit.MILLISECONDS);
    
        assertFalse(Thread.interrupted());
        try {
          delayedFuture.get(20000, TimeUnit.MILLISECONDS);
          fail("expected to be interrupted");
        } catch (InterruptedException expected) {
        } catch (TimeoutException e) {
          throw new RuntimeException(e);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

         * 8. We expect the test thread's interrupt state to be false.
         */
        InterruptionUtil.requestInterruptIn(200, TimeUnit.MILLISECONDS);
    
        assertFalse(Thread.interrupted());
        try {
          delayedFuture.get(20000, TimeUnit.MILLISECONDS);
          fail("expected to be interrupted");
        } catch (InterruptedException expected) {
        } catch (TimeoutException e) {
          throw new RuntimeException(e);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top