Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 237 for 1024m (0.11 sec)

  1. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.values.gen.yaml

          "readinessFailureThreshold": 4,
          "readinessInitialDelaySeconds": 0,
          "readinessPeriodSeconds": 15,
          "resources": {
            "limits": {
              "cpu": "2000m",
              "memory": "1024Mi"
            },
            "requests": {
              "cpu": "100m",
              "memory": "128Mi"
            }
          },
          "startupProbe": {
            "enabled": true,
            "failureThreshold": 600
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.values.gen.yaml

          "readinessFailureThreshold": 4,
          "readinessInitialDelaySeconds": 0,
          "readinessPeriodSeconds": 15,
          "resources": {
            "limits": {
              "cpu": "2000m",
              "memory": "1024Mi"
            },
            "requests": {
              "cpu": "100m",
              "memory": "128Mi"
            }
          },
          "startupProbe": {
            "enabled": true,
            "failureThreshold": 600
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/status_params.yaml.8.values.gen.yaml

          "readinessFailureThreshold": 300,
          "readinessInitialDelaySeconds": 100,
          "readinessPeriodSeconds": 200,
          "resources": {
            "limits": {
              "cpu": "2000m",
              "memory": "1024Mi"
            },
            "requests": {
              "cpu": "100m",
              "memory": "128Mi"
            }
          },
          "startupProbe": {
            "enabled": true,
            "failureThreshold": 600
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/helpers.go

    // <size><unit-prefix>B (1024 = "1KB", 1048576 = "1MB", etc).
    func HugePageUnitSizeFromByteSize(size int64) (string, error) {
    	// hugePageSizeUnitList is borrowed from opencontainers/runc/libcontainer/cgroups/utils.go
    	var hugePageSizeUnitList = []string{"B", "KB", "MB", "GB", "TB", "PB"}
    	idx := 0
    	len := len(hugePageSizeUnitList) - 1
    	for size%1024 == 0 && idx < len {
    		size /= 1024
    		idx++
    	}
    	if size > 1024 && idx < len {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    enforceNodeAllocatable:
    - pods
    eventBurst: 100
    eventRecordQPS: 50
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    httpCheckFrequency: 20s
    imageGCHighThresholdPercent: 85
    imageGCLowThresholdPercent: 80
    imageMaximumGCAge: 0s
    imageMinimumGCAge: 2m0s
    iptablesDropBit: 15
    iptablesMasqueradeBit: 14
    kind: KubeletConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op_test.cc

                          func::FuncDialect>();
      EmptyPatternRewriter pattern_rewriter(builder);
      Value value = CreateConstValue<float>(builder, module->getLoc(), {1024, 2},
                                            SmallVector<float>(2048, 0));
    
      QuantizationComponentSpec quant_spec;
      quant_spec.set_quantization_component(
          QuantizationComponentSpec::COMPONENT_WEIGHT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ResourceOperationTest.groovy

            given:
            def operation = new ResourceOperation(context, Type.upload)
            operation.contentLength = -1
            when:
            operation.logProcessedBytes(1024)
            then:
            1 * context.progress(1024, -1, "bytes", "1 KiB uploaded")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/nettest/conntest.go

    	defer wg.Wait()
    
    	c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := c1.Read(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					checkForTimeoutError(t, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/GcFinalization.java

        //
        // TODO(user): Consider scaling by number of mutator threads,
        // e.g. using Thread#activeCount()
        return Math.max(10L, Runtime.getRuntime().totalMemory() / (32L * 1024L * 1024L));
      }
    
      /**
       * Waits until the given future {@linkplain Future#isDone is done}, invoking the garbage collector
       * as necessary to try to ensure that this will happen.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/headers/platform.h

    #define PLATFORM_H
    
    extern const char* platform_name;
    
    int max_path_length();
    
    unsigned long long max_memory();
    
    int is_posix_like();
    
    #define KB(x) x
    #define MB(x) KB(x)*1024
    #define GB(x) MB(x)*1024
    #define TB(x) GB(x)*1024
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 267 bytes
    - Viewed (0)
Back to top