Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 835 for c000 (0.04 sec)

  1. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    			},
    			{
    				Names: []string{
    					"gcr.io/300:latest",
    					"gcr.io/300:v1",
    				},
    				SizeBytes: int64(300 * mb),
    			},
    			{
    				Names: []string{
    					"gcr.io/2000:latest",
    				},
    				SizeBytes: int64(2000 * mb),
    			},
    		},
    	}
    
    	node25010 := v1.NodeStatus{
    		Images: []v1.ContainerImage{
    			{
    				Names: []string{
    					"gcr.io/250:latest",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			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),
    			period:   uint64(5000),
    			expected: int64(7500),
    		}} {
    		t.Run(testCase.msg, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/config_test.go

    		{"100ExactNoMatch", host.Name("foo.bar.com.100"), "bar.com", []host.Name{}, nil, nil, 100, false},
    		{"1000ExactNoMatch", host.Name("foo.bar.com.1000"), "bar.com", []host.Name{}, nil, nil, 1000, false},
    		{"5000ExactNoMatch", host.Name("foo.bar.com.5000"), "bar.com", []host.Name{}, nil, nil, 5000, false},
    
    		{"10ExactMatch", host.Name("foo.bar.com.10"), "foo.bar.com", []host.Name{}, nil, nil, 10, true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    		// the behavior is verified by researching the source code.
    		//
    		//	$ bsdtar -tvf pax-global-records.tar
    		//	----------  0 0      0           0 Dec 31  1969 file1
    		//	----------  0 0      0           0 Dec 31  1969 file2
    		//	----------  0 0      0           0 Dec 31  1969 file3
    		//	----------  0 0      0           0 May 13  2014 file4
    		//
    		// GNU tar v1.27.1 applies global headers to subsequent records,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/extensionprovider_test.go

    				Service: "name/space/opencensus-agent.com",
    				Port:    4000,
    			},
    			valid: false,
    		},
    		{
    			name: "opencensus service with port",
    			config: &meshconfig.MeshConfig_ExtensionProvider_OpenCensusAgentTracingProvider{
    				Service: "opencensus-agent.com:4000",
    				Port:    4000,
    			},
    			valid: false,
    		},
    		{
    			name: "opencensus missing port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/xds_test.go

    			Select("{.resources[?(@.address.socketAddress.portValue==27018)]}").
    			Equals("0.0.0.0", "{.address.socketAddress.address}").
    			// Example doing a struct comparison, note the pain with oneofs....
    			Equals(&core.SocketAddress{
    				Address: "0.0.0.0",
    				PortSpecifier: &core.SocketAddress_PortValue{
    					PortValue: uint32(27018),
    				},
    			}, "{.address.socketAddress}").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/net/ip_test.go

    		"2001:db8::1",
    		[]byte("2001:db8::1"),
    		nil,
    	},
    	{
    		IP{0x20, 0x1, 0xd, 0xb8, 0, 0, 0, 0x1, 0, 0, 0, 0x1, 0, 0, 0, 0x1},
    		"2001:db8:0:1:0:1:0:1",
    		[]byte("2001:db8:0:1:0:1:0:1"),
    		nil,
    	},
    	{
    		IP{0x20, 0x1, 0xd, 0xb8, 0, 0x1, 0, 0, 0, 0x1, 0, 0, 0, 0x1, 0, 0},
    		"2001:db8:1:0:1:0:1:0",
    		[]byte("2001:db8:1:0:1:0:1:0"),
    		nil,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/none_lds_tcp.json

    {
        "0.0.0.0_7070": {
          "name": "0.0.0.0_7070",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "0.0.0.0",
                "PortSpecifier": {
                  "PortValue": 7070
                }
              }
            }
          },
          "filter_chains": [
            {
              "filters": [
                {
                  "name": "envoy.tcp_proxy",
                  "ConfigType": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/css/fonts.css

      font-weight: 100;
      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEzAdL-vwnYg.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    /* cyrillic-ext */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 300;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="300"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="360"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="480"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="600"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="10GB-20GB",le="900"} 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)
Back to top