Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for Gill (0.09 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPredicate.java

         *
         * <p>A node will be selected if its path equals the specified path.
         */
        @Nullable
        public ModelPath getPath() {
            return null;
        }
    
        /**
         * Returns the parent path of the nodes to select, or null if parent is not relevant.
         *
         * <p>A node will be selected if its parent's path equals the specified path.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/LocalBuildCacheServiceHandle.java

        boolean canStore();
    
        /**
         * Stores the file to the local cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
         * Returns true if store was completed.
         */
        boolean maybeStore(BuildCacheKey key, File file);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 16:23:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensions.kt

        getByName(name)
    
    
    /**
     * Looks for the extension of a given name and casts it to the expected type [T].
     *
     * If none found it will throw an [UnknownDomainObjectException].
     * If the extension is found but cannot be cast to the expected type it will throw an [IllegalStateException].
     *
     * @param name extension name
     * @return extension, never null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/CompactTreeTest.kt

    package org.gradle.kotlin.dsl.resolver
    
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class CompactTreeTest {
    
        @Test
        fun `it will compact common prefixes`() {
            assertThat(
                compactStringFor(listOf("/a/b/c", "/a/b/d", "/a/e/c"), separator = '/'),
                equalTo("/a/{b/{c, d}, e/c}")
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 396 bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  will query all bindings to find which one knows how to encode the type at hand,
     *  by invoking {@link org.gradle.internal.serialize.graph.codecs.Binding#encodingForType(java.lang.Class)} on each binding. If a binding supports the type,
     *  it will return the proper {@link org.gradle.internal.serialize.graph.EncodingProvider} (or null, otherwise).
     *  </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. gradlew

    #   * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
    #     and any embedded shellness will be escaped.
    #   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
    #     treated as '${Hostname}' itself on the command line.
    
    set -- \
            "-Dorg.gradle.appname=$APP_BASE_NAME" \
            -classpath "$CLASSPATH" \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammarTest.kt

    import org.jetbrains.kotlin.lexer.KotlinLexer
    import org.junit.Test
    
    
    class KotlinGrammarTest {
    
        @Test
        fun `will not parse empty annotation`() {
            kotlinGrammar.annotation.failToConsumeFrom("""@""")
            kotlinGrammar.annotation.failToConsumeFrom("""@ \n """)
        }
    
        @Test
        fun `will not parse @ followed by whitespace`() {
            kotlinGrammar.annotation.failToConsumeFrom("@ something")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            This is also problematic because it means we have to serialize this information into some form that fits into annotations.
    
            Later, we will extract all the “up-front” information we need to know during compile time.
            This will mean that we only need to execute the rules themselves, and not any code to actually register the rules.
         */
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileSystemMirroringFileTree.java

    /**
     * A file tree which maintains a local copy of itself on the filesystem.
     */
    public interface FileSystemMirroringFileTree extends MinimalFileTree {
        /**
         * Returns the directory tree that will contain the copy of this file tree, after all elements of this tree have been visited. It is the caller's responsibility to visit the
         * elements of this tree before using the returned directory tree.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

                 *
                 * Note: Even though 'jump to declaration' in IJ will show this to be the 'DefaultImportsReader' from
                 * the plugin Gradle distribution, this is only true at compile time.
                 *
                 * At runtime, the 'DefaultImportsReader' will be the version from the distribution actively being built/tested.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top