Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 341 for 20000 (0.04 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

                      "int_value": 0
                    },
                    "grpc.keepalive_time_ms": {
                      "int_value": 10000
                    },
                    "grpc.keepalive_timeout_ms": {
                      "int_value": 20000
                    }
                  }
                }
              },
              "initial_metadata": [
              {{ if .sts }}
              {{ if .gcp_project_id }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue39292.go

    // errorcheck -0 -m -l
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type t [20000]*int
    
    func (t) f() {
    }
    
    func x() {
    	x := t{}.f // ERROR "t{}.f escapes to heap"
    	x()
    }
    
    func y() {
    	var i int       // ERROR "moved to heap: i"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 555 bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/SettingsTest.kt

        val a = Settings()
        a[Settings.HEADER_TABLE_SIZE] = 10000
        a[Settings.MAX_HEADER_LIST_SIZE] = 20000
        a[Settings.INITIAL_WINDOW_SIZE] = 30000
        val b = Settings()
        b[Settings.MAX_HEADER_LIST_SIZE] = 40000
        b[Settings.INITIAL_WINDOW_SIZE] = 50000
        b[Settings.MAX_CONCURRENT_STREAMS] = 60000
        a.merge(b)
        assertThat(a.headerTableSize).isEqualTo(10000)
        assertThat(a.getMaxHeaderListSize(-1)).isEqualTo(40000)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/UserHomeScopedCompileCaches.java

                "jarAnalysis",
                new HashCodeSerializer(),
                new ClassSetAnalysisData.Serializer(() -> new HierarchicalNameSerializer(interner))
            ).withCacheDecorator(inMemoryCacheDecoratorFactory.decorator(20000, true));
            this.classpathEntrySnapshotCache = new MinimalPersistentCache<>(cache.createIndexedCache(jarCacheParameters));
    
            IndexedCacheParameters<HashCode, ClassAnalysis> classCacheParameters = IndexedCacheParameters.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Stopped
    
    abstract class AbstractDaemonFixture implements DaemonFixture {
        public static final int STATE_CHANGE_TIMEOUT = 20000
        protected final DaemonLogFile daemonLog
        final DaemonContext context
    
        AbstractDaemonFixture(DaemonLogFile daemonLog, GradleVersion version) {
            this.daemonLog = daemonLog
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top