Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for 9$ (2.41 sec)

  1. pkg/kubelet/kubelet_test.go

    			pod:                   podWithUIDNameNsSpec("9", "pod9", "foo", *mem500MPodSpec),
    			existingPodAllocation: podWithUIDNameNsSpec("9", "pod9", "foo", *mem800MPodSpec),
    			expectedPodResourceAllocation: state.PodResourceAllocation{
    				"9": map[string]v1.ResourceList{
    					mem800MPodSpec.Containers[0].Name: mem800MPodSpec.Containers[0].Resources.Requests,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	target := func(in []Value) []Value {
    		runtime.GC()
    		useStack(16)
    		return []Value{ValueOf(9)}
    	}
    
    	var concrete func(*int, int) int
    	fn := MakeFunc(ValueOf(concrete).Type(), target)
    	ValueOf(&concrete).Elem().Set(fn)
    	x := concrete(nil, 7)
    	if x != 9 {
    		t.Errorf("have %#q want 9", x)
    	}
    }
    
    // use about n KB of stack
    func useStack(n int) {
    	if n == 0 {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	}
    
    	drv.mu.Lock()
    	opens := drv.openCount - opens0
    	closes := drv.closeCount - closes0
    	drv.mu.Unlock()
    	if opens < 9 {
    		t.Errorf("opens = %d; want >= 9", opens)
    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * operation throws an {@link UnsupportedOperationException}.
       *
       * <p>The returned entry is serializable.
       *
       * <p><b>Java 9 users:</b> consider using {@code java.util.Map.entry(key, value)} if the key and
       * value are non-null and the entry does not need to be serializable.
       *
       * @param key the key to be associated with the returned entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	{0x4d, 0x5a, 0x78, 0x00, 0x01, 0x00},      // PE (Windows) as generated by llvm for dll
    	{0x00, 0x00, 0x01, 0xEB},                  // Plan 9 i386
    	{0x00, 0x00, 0x8a, 0x97},                  // Plan 9 amd64
    	{0x00, 0x00, 0x06, 0x47},                  // Plan 9 arm
    	{0x00, 0x61, 0x73, 0x6D},                  // WASM
    	{0x01, 0xDF},                              // XCOFF 32bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

    orm<i32:f32, 0.01>>, %arg11: tensor<2048x!quant.uniform<i32:f32, 0.01>>, %arg12: tensor<2048x!quant.uniform<i32:f32, 0.01>>, %arg13: tensor<640x2048x!quant.uniform<i8<-127:127>:f32, 0.021174000576138496>>, %arg14: tensor<640x!quant.uniform<i32:f32, 9.9999999747524271E-7>>, %arg15: tensor<2048x!quant.uniform<i16:f32, 4.3700000969693065E-4>>, %arg16: tensor<2048x!quant.uniform<i16:f32, 4.3700000969693065E-4>>, %arg17: tensor<2048x!quant.uniform<i16:f32, 4.3700000969693065E-4>>, %arg18: tensor<2048...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  7. go.sum

    github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
    github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
    github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKeRZfjY=
    github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	// ServiceEntry.Endpoint.Address message.
    	UnixAddressPrefix = "unix://"
    
    	matchExact  = "exact:"
    	matchPrefix = "prefix:"
    )
    
    var validHeaderRegex = regexp.MustCompile("^[-_A-Za-z0-9]+$")
    
    const (
    	kb = 1024
    	mb = 1024 * kb
    )
    
    var (
    	// envoy supported retry on header values
    	supportedRetryOnPolicies = sets.New(
    		// 'x-envoy-retry-on' supported policies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    						},
    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test14", "2/2", "Running", "9 (5d ago)", "<unknown>"}}},
    		},
    		{
    			// Test PodScheduled condition with reason SchedulingGated
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test15"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    AwICpDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDwYDVR0TAQH/BAUw
    AwEB/zAZBgNVHQ4EEgQQQDfXAftAL7gcflQEJ4xZATANBgkqhkiG9w0BAQsFAAOC
    AQEAGOn3XjxHyHbXLKrRmpwV447B7iNBXR5VlhwOgt1kWaHDL2+8f/9/h0HMkB6j
    fC+/yyuYVqYuOeavqMGVrh33D2ODuTQcFlOx5lXukP46j3j+Lm0jjZ1qNX7vlP8I
    VlUXERhbelkw8O4oikakwIY9GE8syuSgYf+VeBW/lvuAZQrdnPfabxe05Tre6RXy
    nJHMB1q07YHpbwIkcV/lfCE9pig2nPXTLwYZz9cl46Ul5RCpPUi+IKURo3x8y0FU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top