Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 783 for 20000 (0.31 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. cmd/data-usage_test.go

    	base := t.TempDir()
    	const bucket = "bucket"
    	files := []usageTestFile{
    		{name: "rootfile", size: 10000},
    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    		{name: "dir1/dira/dirasub/sublevel3/dccccfile", size: 10},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "10000", "memory": "20000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "10000", "memory": "20000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "10000", "memory": "20000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "10000", "memory": "20000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			input:    int64(10),
    			period:   uint64(200000),
    			expected: int64(2000),
    		},
    		{
    			msg:      "200 input 200k period and 40k quota",
    			input:    int64(200),
    			period:   uint64(200000),
    			expected: int64(40000),
    		},
    		{
    			msg:      "500 input 20k period and 20k expected quota",
    			input:    int64(500),
    			period:   uint64(20000),
    			expected: int64(10000),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/podautoscaler/replica_calculator_test.go

    		podReadiness:     []v1.ConditionStatus{v1.ConditionFalse, v1.ConditionTrue, v1.ConditionFalse},
    		metric: &metricInfo{
    			name:          "qps",
    			levels:        []int64{50000},
    			targetUsage:   10000,
    			expectedUsage: 50000,
    			singleObject: &autoscalingv2.CrossVersionObjectReference{
    				Kind:       "Deployment",
    				APIVersion: "apps/v1",
    				Name:       "some-deployment",
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  10. 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)
Back to top