Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 430 for 9$ (0.03 sec)

  1. 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)
  2. src/syscall/mksyscall.pl

    	}
    	if(@args <= 3) {
    		while(@args < 3) {
    			push @args, "0";
    		}
    	} elsif(@args <= 6) {
    		$asm .= "6";
    		while(@args < 6) {
    			push @args, "0";
    		}
    	} elsif(@args <= 9) {
    		$asm .= "9";
    		while(@args < 9) {
    			push @args, "0";
    		}
    	} else {
    		print STDERR "$ARGV:$.: too many arguments to system call\n";
    	}
    
    	if ($darwin || ($openbsd && $libc)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K 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-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     *
     * If no extension is found, configures a project convention if available.
     * Note, that the concept of conventions is deprecated and scheduled for
     * removal in Gradle 9.
     *
     * @param T the project extension type.
     * @param configuration the configuration block.
     * @see [org.gradle.api.plugins.ExtensionAware]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/string.go

    	if s == "" {
    		return 0, false
    	}
    
    	neg := false
    	if s[0] == '-' {
    		neg = true
    		s = s[1:]
    	}
    
    	un := uint64(0)
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		if c < '0' || c > '9' {
    			return 0, false
    		}
    		if un > maxUint64/10 {
    			// overflow
    			return 0, false
    		}
    		un *= 10
    		un1 := un + uint64(c) - '0'
    		if un1 < un {
    			// overflow
    			return 0, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top