Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for 1024m (0.08 sec)

  1. 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)
  2. 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)
  3. 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