Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for 7500 (0.13 sec)

  1. src/os/user/listgroups_unix_test.go

    kmem:*:2:root
    manymembers:x:777:jill,jody,john,jack,jov,user777
    ` + largeGroup()
    
    func largeGroup() (res string) {
    	var b strings.Builder
    	b.WriteString("largegroup:x:1000:user1")
    	for i := 2; i <= 7500; i++ {
    		fmt.Fprintf(&b, ",user%d", i)
    	}
    	return b.String()
    }
    
    var listGroupsTests = []struct {
    	// input
    	in   string
    	user string
    	gid  string
    	// output
    	gids []string
    	err  bool
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		},
    		{
    			name:        "capacity=7500, indexExists, triggerUsed",
    			capacity:    7500,
    			indexExists: true,
    			triggerUsed: true,
    			expected:    10,
    		},
    		{
    			name:        "capacity=7500, indexExists, !triggerUsed",
    			capacity:    7500,
    			indexExists: true,
    			triggerUsed: false,
    			expected:    100,
    		},
    		{
    			name:        "capacity=7500, !indexExists",
    			capacity:    7500,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/metrics/utilization_test.go

    	tc := metricUsageRatioTestCase{
    		metrics: PodMetricsInfo{
    			"test-pod-0": {Value: 5000}, "test-pod-1": {Value: 10000},
    		},
    		targetUsage:          10000,
    		expectedUsageRatio:   .75,
    		expectedCurrentUsage: 7500,
    	}
    
    	tc.runTest(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 22 08:59:02 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/helpers_linux_test.go

    		},
    		{
    			msg:      "500 input 20k period and 20k expected quota",
    			input:    int64(500),
    			period:   uint64(20000),
    			expected: int64(10000),
    		},
    		{
    			msg:      "1000 input 10k period and 10k expected quota",
    			input:    int64(1000),
    			period:   uint64(10000),
    			expected: int64(10000),
    		},
    		{
    			msg:      "1500 input 5000 period and 7500 expected quota",
    			input:    int64(1500),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. test/inline_big.go

    	a[728] = 0
    	a[729] = 0
    	a[730] = 0
    	a[731] = 0
    	a[732] = 0
    	a[733] = 0
    	a[734] = 0
    	a[735] = 0
    	a[736] = 0
    	a[737] = 0
    	a[738] = 0
    	a[739] = 0
    	a[740] = 0
    	a[741] = 0
    	a[742] = 0
    	a[743] = 0
    	a[744] = 0
    	a[745] = 0
    	a[746] = 0
    	a[747] = 0
    	a[748] = 0
    	a[749] = 0
    	a[750] = 0
    	a[751] = 0
    	a[752] = 0
    	a[753] = 0
    	a[754] = 0
    	a[755] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/base/StopwatchTest.java

        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (1.5 * 60 * 1000000000L));
        assertEquals("1.500 min", stopwatch.toString());
        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (2.5 * 60 * 60 * 1000000000L));
        assertEquals("2.500 h", stopwatch.toString());
        stopwatch.reset();
        stopwatch.start();
        ticker.advance((long) (7.25 * 24 * 60 * 60 * 1000000000L));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. helm-releases/minio-5.0.0.tgz

    minio-5.0.0.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2022-10-24T18-35-07Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 5.0.0 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 10:20:22 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  8. src/net/http/response_test.go

    			resp.Body = &readerAndCloser{gzReader, resp.Body}
    		}
    
    		rbuf := make([]byte, 2500)
    		n, err := io.ReadFull(resp.Body, rbuf)
    		checkErr(err, "2500 byte ReadFull")
    		if n != 2500 {
    			fatalf("ReadFull only read %d bytes", n)
    		}
    		if test.compressed == false && !bytes.Equal(bytes.Repeat([]byte{'x'}, 2500), rbuf) {
    			fatalf("ReadFull didn't read 2500 'x'; got %q", string(rbuf))
    		}
    		resp.Body.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gotoolchain_local.txt

    go version
    stdout go1.500-bigcorp
    
    go mod edit -go=1.500 -toolchain=go1.500
    go version
    stdout go1.500-bigcorp
    
    go mod edit -go=1.501 -toolchain=none
    go version
    stdout go1.501
    
    	# If toolchain > go, we must upgrade to the indicated toolchain (not just the go version).
    go mod edit -go=1.499 -toolchain=go1.501
    go version
    stdout go1.501
    
    env TESTGO_VERSION='go1.500 (bigcorp)'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gotoolchain_path.txt

    grep 'go 1.21$' go.mod
    grep 'toolchain go1.50.0' go.mod
    env GOTOOLCHAIN=auto
    ! go version
    stderr 'running go1.50.0 from PATH'
    
    # GOTOOLCHAIN=auto with go line
    env GOTOOLCHAIN=local
    go mod edit -toolchain=none -go=1.50.0
    grep 'go 1.50.0$' go.mod
    ! grep toolchain go.mod
    env GOTOOLCHAIN=auto
    ! go version
    stderr 'running go1.50.0 from PATH'
    
    # NewerToolchain should find Go 1.50.0.
    env GOTOOLCHAIN=local
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 22:21:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top