Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 835 for c000 (0.36 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. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				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:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				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:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				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: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. 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)
  10. test/inline_big.go

    	return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6] + a[7]
    }
    
    func f(a []int) int { // ERROR "cannot inline f:.*" "a does not escape" "function f considered 'big'"
    	// Add lots of nodes to f's body. We need >5000.
    	// See cmd/compile/internal/gc/inl.go:inlineBigFunction*
    	a[0] = 0
    	a[1] = 0
    	a[2] = 0
    	a[3] = 0
    	a[4] = 0
    	a[5] = 0
    	a[6] = 0
    	a[7] = 0
    	a[8] = 0
    	a[9] = 0
    	a[10] = 0
    	a[11] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top