Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 560 for c000 (0.12 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

       * as a numeric ID.
       *
       * <p>This method uses hexadecimal for all IPv6 addresses, including IPv4-mapped IPv6 addresses
       * such as "::c000:201".
       *
       * @param ip {@link InetAddress} to be converted to an address string
       * @return {@code String} containing the text-formatted IP address
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       * as a numeric ID.
       *
       * <p>This method uses hexadecimal for all IPv6 addresses, including IPv4-mapped IPv6 addresses
       * such as "::c000:201".
       *
       * @param ip {@link InetAddress} to be converted to an address string
       * @return {@code String} containing the text-formatted IP address
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		seedKubelet           = 200
    		seedMisc              = 300
    		seedPod0Infra         = 1000
    		seedPod0Container0    = 2000
    		seedPod0Container1    = 2001
    		seedPod1Infra         = 3000
    		seedPod1Container     = 4000
    		seedPod2Infra         = 5000
    		seedPod2Container     = 6000
    		seedPod3Infra         = 7000
    		seedPod3Container0    = 8000
    		seedPod3Container1    = 8001
    		seedEphemeralVolume1  = 10000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types_test.go

    				v1.ResourceMemory:           *resource.NewQuantity(2000, resource.BinarySI),
    				v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    			},
    			expected: &Resource{
    				MilliCPU:         4,
    				Memory:           2000,
    				EphemeralStorage: 5000,
    			},
    		},
    		{
    			resource: &Resource{
    				MilliCPU:         4,
    				Memory:           4000,
    				EphemeralStorage: 5000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    	// This offset offsetCRI is to distinguish it from Cadvisor stats
    	offsetCRI = 1000
    )
    
    const (
    	seedRoot       = 0
    	seedKubelet    = 200
    	seedMisc       = 300
    	seedSandbox0   = 1000
    	seedContainer0 = 2000
    	seedSandbox1   = 3000
    	seedContainer1 = 4000
    	seedContainer2 = 5000
    	seedSandbox2   = 6000
    	seedContainer3 = 7000
    	seedSandbox3   = 8000
    )
    
    const (
    	pName0 = "pod0"
    	pName1 = "pod1"
    	pName2 = "pod2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. cluster/gce/config-common.sh

        suggested_range="10.40.0.0/20"
      fi
      if [[ "$(get-num-nodes)" -gt 4000 ]]; then
        suggested_range="10.40.0.0/19"
      fi
      echo "${suggested_range}"
    }
    
    function get-cluster-ip-range {
      local suggested_range="10.64.0.0/14"
      if [[ "$(get-num-nodes)" -gt 1000 ]]; then
        suggested_range="10.64.0.0/13"
      fi
      if [[ "$(get-num-nodes)" -gt 2000 ]]; then
        suggested_range="10.64.0.0/12"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceEphemeralStorage: *resource.NewQuantity(2000, resource.BinarySI),
    				},
    				capacity: v1.ResourceList{
    					v1.ResourceCPU:              *resource.NewMilliQuantity(2000, resource.DecimalSI),
    					v1.ResourceMemory:           *resource.NewQuantity(10e9, resource.BinarySI),
    					v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top