Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for 1024m (0.15 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    	addNotImplatedReaction(kubeClient)
    
    	machineInfo := &cadvisorapi.MachineInfo{
    		MachineID:      "123",
    		SystemUUID:     "abc",
    		BootID:         "1b3",
    		NumCores:       2,
    		MemoryCapacity: 1024,
    	}
    	kubelet.setCachedMachineInfo(machineInfo)
    
    	done := make(chan struct{})
    	go func() {
    		kubelet.registerWithAPIServer()
    		done <- struct{}{}
    	}()
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    					return fmt.Errorf("unexpected load balancer. expected: %v, got: %v", cluster.Cluster_RING_HASH, c.LbPolicy)
    				}
    				if c.GetRingHashLbConfig().GetMinimumRingSize().Value != 1024 {
    					return fmt.Errorf("unexpected minimum ring size. expected: %v, got: %v", 1024, c.GetRingHashLbConfig().GetMinimumRingSize().Value)
    				}
    				return nil
    			},
    		},
    		{
    			"consistent hash settings with deprecated minring size",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Use initial buffer size in flatbuffer builder to be same as the initial size
    // used by the TOCO export. (It does not explain rationale for this choice.)
    constexpr size_t kInitialBufferSize = 10240;
    
    // Flatbuffer fields to be padded to 16 bytes aligned.
    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    port: 443 protocol: TCP targetPort: 443 annotations: {} loadBalancerIP: "" loadBalancerSourceRa: [] externalTrafficPolic: "" externalIPs: [] ipFamilyPolicy: "" ipFamilies: [] resources: requests: cpu: 100m memory: 128Mi limits: cpu: 2000m memory: 1024Mi autoscaling: enabled: true minReplicas: 1 maxReplicas: 5 targetCPUUtilization: 80 targetMemoryUtilizat: {} autoscaleBehavior: {} # Pod environment variables env: {} # Labels to apply to all resources labels: {} # Annotations to apply to all resources...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		// We set hi to &size, but there are things above
    		// it. The 1024 is supposed to compensate this,
    		// but is somewhat arbitrary.
    		size := gp.stack.hi
    		if size == 0 {
    			size = 16384 * sys.StackGuardMultiplier
    		}
    		gp.stack.hi = uintptr(noescape(unsafe.Pointer(&size)))
    		gp.stack.lo = gp.stack.hi - size + 1024
    	}
    	// Initialize stack guard so that we can start calling regular
    	// Go code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    <binarySI> | <decimalExponent> | <decimalSI> <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n<decimalSI>       ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512_test.go

    		for i := 0; i < b.N; i++ {
    			Sum512(buf[:size])
    		}
    	})
    }
    
    func BenchmarkHash8Bytes(b *testing.B) {
    	benchmarkSize(b, 8)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    func TestParseFormCleanup(t *testing.T) { run(t, testParseFormCleanup) }
    func testParseFormCleanup(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/20253")
    	}
    
    	const maxMemory = 1024
    	const key = "file"
    
    	if runtime.GOOS == "windows" {
    		// Windows sometimes refuses to remove a file that was just closed.
    		t.Skip("https://go.dev/issue/25965")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top