Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 1024m (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	table := []struct {
    		in     string
    		expect string
    	}{
    		{"1Ki", "1Ki"},
    		{"1Mi", "1Mi"},
    		{"1Gi", "1Gi"},
    		{"1024Mi", "1Gi"},
    		{"1000M", "1G"},
    		{".001Ki", "1024m"},
    		{".000001Ki", "1024u"},
    		{".000000001Ki", "1024n"},
    		{".000000000001Ki", "2n"},
    	}
    
    	for _, item := range table {
    		q, err := ParseQuantity(item.in)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				EventBurst:                                100,
    				EnableDebuggingHandlers:                   utilpointer.Bool(true),
    				HealthzPort:                               utilpointer.Int32(10248),
    				HealthzBindAddress:                        "127.0.0.1",
    				OOMScoreAdj:                               utilpointer.Int32(int32(qos.KubeletOOMScoreAdj)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        setUp(protocol, mockWebServer)
        val body = CharArray(4096) // 4KiB to read.
        Arrays.fill(body, 'y')
        server.enqueue(
          MockResponse.Builder()
            .body(String(body))
            .throttleBody(1024, 1, TimeUnit.SECONDS) // Slow connection 1KiB/second.
            .build(),
        )
        client =
          client.newBuilder()
            .readTimeout(Duration.ofSeconds(2))
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            ),
            1 / 3,
        )
    
      def test_when_preset_not_srq_raises_error(self):
        self._create_matmul_model(
            input_shape=(1, 1024),
            weight_shape=(1024, 3),
            saved_model_path=self._input_saved_model_path,
        )
    
        config = qc.QuantizationConfig()
        with self.assertRaisesRegex(ValueError, 'only supports static-range PTQ'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      @get:JvmName("webSocketCloseTimeout")
      val webSocketCloseTimeout: Int = builder.webSocketCloseTimeout
    
      /**
       * Minimum outbound web socket message size (in bytes) that will be compressed.
       * The default is 1024 bytes.
       */
      @get:JvmName("minWebSocketMessageToCompress")
      val minWebSocketMessageToCompress: Long = builder.minWebSocketMessageToCompress
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if r0 == 0 {
    		err = errnoErr2(e1, e2)
    	} else {
    		name = u2s(unsafe.Pointer(r0))
    	}
    	return
    }
    
    func u2s(cstr unsafe.Pointer) string {
    	str := (*[1024]uint8)(cstr)
    	i := 0
    	for str[i] != 0 {
    		i++
    	}
    	return string(str[:i])
    }
    
    func Close(fd int) (err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    			0, 5, nil, errFileNameTooLong,
    		},
    		// Path length is > 1024 chars long. - 5
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    // Only a limited number of callbacks may be created in a single Go process, and any memory allocated
    // for these callbacks is never released.
    // Between NewCallback and NewCallbackCDecl, at least 1024 callbacks can always be created.
    func NewCallback(fn any) uintptr {
    	return compileCallback(fn, true)
    }
    
    // NewCallbackCDecl converts a Go function to a function pointer conforming to the cdecl calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    		{"+Inf", "nil", Below},
    		{"-Inf", "nil", Above},
    		{"1", "1/1", Exact},
    		{"-1", "-1/1", Exact},
    		{"1.25", "5/4", Exact},
    		{"-1.25", "-5/4", Exact},
    		{"1e10", "10000000000/1", Exact},
    		{"1p10", "1024/1", Exact},
    		{"-1p-10", "-1/1024", Exact},
    		{"3.14159265", "7244019449799623199/2305843009213693952", Exact},
    	} {
    		x := makeFloat(test.x).SetPrec(64)
    		res, acc := x.Rat(nil)
    		got := "nil"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    			distributionAlgo: formatErasureVersionV3DistributionAlgoV3,
    		}
    	)
    
    	// Maximum number of reusable buffers per node at any given point in time.
    	n := uint64(1024) // single node single/multiple drives set this to 1024 entries
    
    	if globalIsDistErasure {
    		n = 2048
    	}
    
    	// Avoid allocating more than half of the available memory
    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top