Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 642 for 17000 (0.21 sec)

  1. tests/testdata/envoy_local.json

    {
      "stats_config": {
        "use_all_default_tags": false
      },
      "admin": {
        "access_log_path": "/dev/stdout",
        "address": {
          "socket_address": {
            "address": "127.0.0.1",
            "port_value": 17000
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "api_config_source": {
            "api_type": "GRPC",
            "grpc_services": {
              "envoy_grpc": {
                "cluster_name": "xds-grpc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.9K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/basn3p08.sng

    #SNG: from basn3p08.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        ( 34, 68,  0)     # rgb = (0x22,0x44,0x00)
        (245,255,237)     # rgb = (0xf5,0xff,0xed)
        (119,255,119)     # rgb = (0x77,0xff,0x77)
        (203,255,255)     # rgb = (0xcb,0xff,0xff)
        ( 17, 10,  0)     # rgb = (0x11,0x0a,0x00)
        ( 58,119,  0)     # rgb = (0x3a,0x77,0x00)
        ( 34, 34,255)     # rgb = (0x22,0x22,0xff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 13.9K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/aggregator.go

    		{Group: "authentication.k8s.io", Version: "v1alpha1"}:        {Group: 17700, Version: 1},
    		{Group: "authorization.k8s.io", Version: "v1"}:               {Group: 17600, Version: 15},
    		{Group: "certificates.k8s.io", Version: "v1"}:                {Group: 17300, Version: 15},
    		{Group: "certificates.k8s.io", Version: "v1alpha1"}:          {Group: 17300, Version: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator_test.go

    		podPhase:         []v1.PodPhase{v1.PodRunning, v1.PodRunning, v1.PodRunning},
    		metric: &metricInfo{
    			name:          "qps",
    			levels:        []int64{10000, 10000},
    			targetUsage:   17000,
    			expectedUsage: 10000,
    			metricType:    podMetric,
    		},
    	}
    	tc.runTest(t)
    }
    
    // TestComputedToleranceAlgImplementation is a regression test which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-oidc.sh

    export MINIO_IDENTITY_OPENID_REDIRECT_URI="http://127.0.0.1:10000/oauth_callback"
    minio server --address ":9001" --console-address ":10000" /tmp/minio1/{1...4} >/tmp/minio1_1.log 2>&1 &
    site1_pid=$!
    export MINIO_IDENTITY_OPENID_REDIRECT_URI="http://127.0.0.1:11000/oauth_callback"
    minio server --address ":9002" --console-address ":11000" /tmp/minio2/{1...4} >/tmp/minio2_1.log 2>&1 &
    site2_pid=$!
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. docs/bucket/replication/test_del_marker_proxying.sh

    export MINIO_ROOT_PASSWORD="minio123"
    
    # Start MinIO instances
    echo -n "Starting MinIO instances ..."
    minio server --address ":9001" --console-address ":10000" /tmp/sitea/{1...4}/disk{1...4} /tmp/sitea/{5...8}/disk{1...4} >/tmp/sitea_1.log 2>&1 &
    minio server --address ":9002" --console-address ":11000" /tmp/siteb/{1...4}/disk{1...4} /tmp/siteb/{5...8}/disk{1...4} >/tmp/siteb_1.log 2>&1 &
    echo "done"
    
    if [ ! -f ./mc ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/metrics/client_test.go

    		reportedPodMetrics: []map[string]int64{{"test-1": 5000, "test-2": 500}, {"test-1": 5000, "test-2": 500}, {"test-1": 5000, "test-2": 500}},
    	}
    	tc.runTest(t)
    }
    
    func TestRESTClientExternal(t *testing.T) {
    	tc := restClientTestCase{
    		desiredMetricValues: PodMetricsInfo{
    			"external-val-0": {Value: 10000}, "external-val-1": {Value: 20000}, "external-val-2": {Value: 10000},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGeneratorTest.groovy

            timeProvider.currentTime >> 1200
    
            when:
            processor.testClassStarted("some-test")
    
            then:
            1 * target.started({it.id == 1 && it.className == 'some-test'}, {it.startTime == 1200})
            0 * target._
        }
    
        def "fires event on test class finish"() {
            given:
            idGenerator.generateId() >> 1
            timeProvider.currentTime >>> [1200, 1300]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="1200"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="1800"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="2700"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="3600"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/net/example_test.go

    	// Output:
    	// true
    	// false
    	// true
    	// false
    }
    
    func ExampleIP_IsLoopback() {
    	ipv6Lo := net.ParseIP("::1")
    	ipv6 := net.ParseIP("ff02::1")
    	ipv4Lo := net.ParseIP("127.0.0.0")
    	ipv4 := net.ParseIP("128.0.0.0")
    
    	fmt.Println(ipv6Lo.IsLoopback())
    	fmt.Println(ipv6.IsLoopback())
    	fmt.Println(ipv4Lo.IsLoopback())
    	fmt.Println(ipv4.IsLoopback())
    
    	// Output:
    	// true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 13 16:36:59 UTC 2021
    - 8.5K bytes
    - Viewed (0)
Back to top