Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,042 for c000 (0.05 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        data.write("ca00".decodeHex()) // Empty pong, flag 1 set.
        assertFailsWith<ProtocolException> {
          clientReader.processNextFrame()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Unexpected rsv1 flag")
        }
      }
    
      @Test fun reservedFlag1IsUnsupportedForControlFrames() {
        data.write("ca00".decodeHex()) // Empty pong, flag 1 set.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.SZ, Name: "String2", Value: "\000", WillFail: true},
    	{Type: registry.SZ, Name: "String3", Value: "Hello World"},
    	{Type: registry.SZ, Name: "String4", Value: "Hello World\000", WillFail: true},
    	{Type: registry.EXPAND_SZ, Name: "ExpString1", Value: ""},
    	{Type: registry.EXPAND_SZ, Name: "ExpString2", Value: "\000", WillFail: true},
    	{Type: registry.EXPAND_SZ, Name: "ExpString3", Value: "Hello World"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            assertEquals(2000, intervalControlHelper.getDelay());
    
            intervalControlHelper.ruleList.clear();
    
            intervalControlHelper.addIntervalRule("12:15", "12:15", "*", 3000);
            assertEquals(3000, intervalControlHelper.getDelay());
    
            intervalControlHelper.ruleList.clear();
    
            intervalControlHelper.addIntervalRule("12:15", "12:15", "3,5", 4000);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top