Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/image/png/testdata/pngsuite/basn0g16.sng

    0800 1100 1a00 2300 2c00 3500 3e00 4700 5000 5900 6200 6b00 7400 7d00 8600 8f00 9800 a100 aa00 b300 bc00 c500 ce00 d700 e000 e900 f200 fb00 f3ff d8ff bdff a2ff 
    0a00 1300 1c00 2500 2e00 3700 4000 4900 5200 5b00 6400 6d00 7600 7f00 8800 9100 9a00 a300 ac00 b500 be00 c700 d000 d900 e200 eb00 f400 fd00 edff d2ff b7ff 9cff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. test/fixedbugs/bug384.go

    // errorcheck
    
    // Copyright 2011 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.
    
    // Issue 2500
    
    package foo
    
    // Check that we only get root cause message, no further complaints about r undefined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 355 bytes
    - Viewed (0)
  10. 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)
Back to top