Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for 1024m (0.05 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. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Move [s] dst src mem) && s > 768 && s <= 1024 && logLargeCopy(v, s) =>
    	(MVC [makeValAndOff(int32(s)-768, 768)] dst src (MVC [makeValAndOff(256, 512)] dst src (MVC [makeValAndOff(256, 256)] dst src (MVC [makeValAndOff(256, 0)] dst src mem))))
    
    // Move more than 1024 bytes using a loop.
    (Move [s] dst src mem) && s > 1024 && logLargeCopy(v, s) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/internal/cache/cache_test.go

    		podsToUpdate: []*v1.Pod{testPods[0], testPods[1], testPods[0]},
    		wNodeInfo: []*framework.NodeInfo{newNodeInfo(
    			&framework.Resource{
    				MilliCPU: 200,
    				Memory:   1024,
    			},
    			&framework.Resource{
    				MilliCPU: 200,
    				Memory:   1024,
    			},
    			[]*v1.Pod{testPods[1]},
    			newHostPortInfoBuilder().add("TCP", "127.0.0.1", 8080).build(),
    			make(map[string]*framework.ImageStateSummary),
    		), newNodeInfo(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  6. 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)
  7. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    ass package org.gradle.wrapper; public synchronized class Download implements IDownload { public static final String UNKNOWN_VERSION = 0; public static final int DEFAULT_NETWORK_TIMEOUT_MILLISECONDS = 10000; private static final int BUFFER_SIZE = 10240; private static final int PROGRESS_CHUNK = 1048576; private final Logger logger; private final String appName; private final String appVersion; private final DownloadProgressList progressListener; private final java.util.Map systemProperties; private...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top