Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for 9$ (0.02 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-SCT

    00000480  47 9f 1c 64 6e 80 ab 9d  51 92 8c 60 a2 88 c4 43  |G..dn...Q..`...C|
    00000490  7d dc 29 64 45 83 a7 9c  2a 39 e9 bb 2a d9 f5 96  |}.)dE...*9..*...|
    000004a0  4c fb fd 0d cc 0f 9b 48  f5 ee af 8f 7a 1c 39 3e  |L......H....z.9>|
    000004b0  cf 23 15 c6 ab c3 f2 29  fd 6c 4f 17 6b d4 be 1a  |.#.....).lO.k...|
    000004c0  23 6e 74 81 e5 e5 e8 c0  de 9b b0 ed d2 32 bc 2a  |#nt..........2.*|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/stream/EncodedStream.java

                }
                return (hexToByte(byte1) << 4) | hexToByte(byte2);
            }
    
            public static int hexToByte(int s) throws IOException {
                if (s >= '0' && s <= '9') {
                    return s - '0';
                }
                if (s >= 'a' && s <= 'f') {
                    return s - 'a' + 10;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. internal/grid/handlers_string.go

    	_ = x[HandlerLockRLock-2]
    	_ = x[HandlerLockUnlock-3]
    	_ = x[HandlerLockRUnlock-4]
    	_ = x[HandlerLockRefresh-5]
    	_ = x[HandlerLockForceUnlock-6]
    	_ = x[HandlerWalkDir-7]
    	_ = x[HandlerStatVol-8]
    	_ = x[HandlerDiskInfo-9]
    	_ = x[HandlerNSScanner-10]
    	_ = x[HandlerReadXL-11]
    	_ = x[HandlerReadVersion-12]
    	_ = x[HandlerDeleteFile-13]
    	_ = x[HandlerDeleteVersion-14]
    	_ = x[HandlerUpdateMetadata-15]
    	_ = x[HandlerWriteMetadata-16]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/internal/jvm/JavaVersionParser.java

                    assertTrue(s, i != 0);
                    return i;
                }
            }
    
            return s.length();
        }
    
        private static boolean isDigitOrPeriod(char c) {
            return (c >= '0' && c <= '9') || c == '.';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/crypto/tls/ech.go

    		return nil, err
    	}
    	h = h[4:] // strip four byte prefix
    
    	var paddingLen int
    	if inner.serverName != "" {
    		paddingLen = max(0, maxNameLength-len(inner.serverName))
    	} else {
    		paddingLen = maxNameLength + 9
    	}
    	paddingLen = 31 - ((len(h) + paddingLen - 1) % 32)
    
    	return append(h, make([]byte, paddingLen)...), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildEnvironmentCrossVersionSpec.groovy

    class BuildEnvironmentCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion(">=3.5")
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        def "old versions can mutate environment on JDK < 9"() {
            given:
            toolingApi.requireDaemons() //cannot be run in embedded mode
    
            buildFile << """
                task printEnv() {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/envcmd/env_test.go

    	f.Fuzz(func(t *testing.T, s string) {
    		t.Parallel()
    
    		for _, c := range []byte(s) {
    			if c == 0 {
    				t.Skipf("skipping %q: contains a null byte. Null bytes can't occur in the environment"+
    					" outside of Plan 9, which has different code path than Windows and Unix that this test"+
    					" isn't testing.", s)
    			}
    			if c > unicode.MaxASCII {
    				t.Skipf("skipping %#q: contains a non-ASCII character %q", s, c)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/version.go

    // interpreted as Go versions.
    func (x goVersion) cmp(y goVersion) int {
    	return version.Compare(string(x), string(y))
    }
    
    var (
    	// Go versions that introduced language changes
    	go1_9  = asGoVersion("go1.9")
    	go1_13 = asGoVersion("go1.13")
    	go1_14 = asGoVersion("go1.14")
    	go1_17 = asGoVersion("go1.17")
    	go1_18 = asGoVersion("go1.18")
    	go1_20 = asGoVersion("go1.20")
    	go1_21 = asGoVersion("go1.21")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/log/slog/value_test.go

    		{uint8(3), Uint64Value(3)},
    		{uint16(4), Uint64Value(4)},
    		{uint32(5), Uint64Value(5)},
    		{uint64(6), Uint64Value(6)},
    		{uintptr(7), Uint64Value(7)},
    		{int8(8), Int64Value(8)},
    		{int16(9), Int64Value(9)},
    		{int32(10), Int64Value(10)},
    		{int64(11), Int64Value(11)},
    	} {
    		got := AnyValue(test.in)
    		if !got.Equal(test.want) {
    			t.Errorf("%v (%[1]T): got %v (kind %s), want %v (kind %s)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. docs/site-replication/run-replication-with-checksum-header.sh

    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    # Function to convert number to corresponding alphabet
    num_to_alpha() {
    	local num=$1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top