Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for 7500 (0.04 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cni/test/testdata/pre/noname_calico.conflist

    {
      "cniVersion": "0.3.1",
      "plugins": [
        {
          "type": "calico",
          "etcd_endpoints": "http://10.110.0.136:6666",
          "plugin_log_level": "info",
          "mtu": 1500,
          "ipam": {
            "type": "calico-ipam"
          },
          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
          "type": "portmap",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 499 bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/aggregator.go

    	{Group: "autoscaling", Version: "v1"}:             {Group: 17500, Version: 15},
    	{Group: "autoscaling", Version: "v2"}:             {Group: 17500, Version: 30},
    	{Group: "autoscaling", Version: "v2beta1"}:        {Group: 17500, Version: 9},
    	{Group: "autoscaling", Version: "v2beta2"}:        {Group: 17500, Version: 1},
    	{Group: "batch", Version: "v1"}:                   {Group: 17400, Version: 15},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 490)).length());
                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 500)).length());
                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 510)).length());
                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 520)).length());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring_test.go

    	c := NewExpiringWithClock(fc)
    
    	c.Set("a", "a", time.Second)
    
    	fc.Step(500 * time.Millisecond)
    	if _, ok := c.Get("a"); !ok {
    		t.Fatalf("we should have found a key")
    	}
    
    	fc.Step(time.Second)
    	if _, ok := c.Get("a"); ok {
    		t.Fatalf("we should not have found a key")
    	}
    
    	c.Set("a", "a", time.Second)
    
    	fc.Step(500 * time.Millisecond)
    	if _, ok := c.Get("a"); !ok {
    		t.Fatalf("we should have found a key")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/runtime/profbuf_test.go

    		write(t, b, unsafe.Pointer(&myTags[1]), 500, []uint64{502, 504}, []uintptr{})                     // still overflow
    		read(t, b, []uint64{5, 99, 0, 0, 301}, []unsafe.Pointer{nil})                                     // overflow synthesized by read
    		write(t, b, unsafe.Pointer(&myTags[1]), 500, []uint64{502, 505}, []uintptr{506})                  // written
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 20:04:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top