Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for 19 (0.09 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SnapshotSerializer.java

        private static final int IMMUTABLE_MANAGED_SNAPSHOT = 16;
        private static final int IMPLEMENTATION_SNAPSHOT = 17;
        private static final int HASH_SNAPSHOT = 18;
        private static final int ATTRIBUTE = 19;
        private static final int GRADLE_SERIALIZED_SNAPSHOT = 20;
        private static final int DEFAULT_SNAPSHOT = 21;
        private static final int ARRAY_OF_PRIMITIVE_SNAPSHOT = 22;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/Mine.kt",
                """
                open class Mine {
                    val some = 19
                    val more = 23
                }
                """
            )
            withFile(
                "buildSrc/src/main/kotlin/my-plugin.gradle.kts",
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/Striped64.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/Striped64.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    	}{
    		{"", "", ""},                   // no versions specified
    		{"go1.19", "", "go1.19"},       // module version specified
    		{"", "go1.20", ""},             // file upgrade ignored
    		{"go1.19", "go1.20", "go1.20"}, // file upgrade permitted
    		{"go1.20", "go1.19", "go1.20"}, // file downgrade not permitted
    		{"go1.21", "go1.19", "go1.19"}, // file downgrade permitted (module version is >= go1.21)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    			}
    		}
    		dirP := filepath.Dir(dir)
    		if dir == dirP {
    			break
    		}
    		dir = dirP
    	}
    
    	// Fix up output referring to cgo-generated code to be more readable.
    	// Replace x.go:19[/tmp/.../x.cgo1.go:18] with x.go:19.
    	// Replace *[100]_Ctype_foo with *[100]C.foo.
    	// If we're using -x, assume we're debugging and want the full dump, so disable the rewrite.
    	if !cfg.BuildX && cgoLine.MatchString(out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Striped64.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        </plugin>
                    </plugins>
                </reporting>
            </profile>
            <profile>
                <id>java9</id>
                <activation>
                    <jdk>[1.9,)</jdk>
                </activation>
                <properties>
                    <!-- JDK 9 minimal source and target versions are 1.6 -->
                    <jdkVersion>1.6</jdkVersion>
                </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/Striped64.java

     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/edit.go

    a version on the left side is dropped.
    
    The -retract=version and -dropretract=version flags add and drop a
    retraction on the given version. The version may be a single version
    like "v1.2.3" or a closed interval like "[v1.1.0,v1.1.9]". Note that
    -retract=version is a no-op if that retraction already exists.
    
    The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    -replace, -dropreplace, -retract, and -dropretract editing flags may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top