Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for hierarchyOf (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [[sec:settings_file]]
    == Always define a settings file
    
    Gradle tries to locate a `settings.gradle` (Groovy DSL) or a `settings.gradle.kts` (Kotlin DSL) file with every invocation of the build.
    For that purpose, the runtime walks the hierarchy of the directory tree up to the root directory.
    The algorithm stops searching as soon as it finds the settings file.
    
    Always add a `settings.gradle` to the root directory of your build to avoid the initial performance impact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * A factory for a worker process which loads the application classes using the JVM's system ClassLoader.
     *
     * <p>Class loader hierarchy:</p>
     * <pre>
     *                       jvm bootstrap
     *                             |
     *                             |
     *                        jvm system
     *           (GradleWorkerMain, application classes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleComponentResolveMetadata.java

     *
     * The realised part is about the application of {@link VariantMetadataRules} which are applied eagerly
     * to configuration or variant data.
     *
     * This type hierarchy is used whenever the {@code ModuleComponentResolveMetadata} needs to outlive
     * the build execution.
     */
    public abstract class AbstractRealisedModuleComponentResolveMetadata extends AbstractModuleComponentResolveMetadata {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            runtime.artifacts.name.name == ["runtime.jar"]
            runtime.excludes.empty
            def defaultConfig = immutable.getConfiguration("default")
            defaultConfig.hierarchy as List == ["default", "runtime"]
            defaultConfig.transitive
            defaultConfig.visible
            defaultConfig.artifacts.name.name == ["api.jar", "runtime.jar"]
            defaultConfig.excludes.empty
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * #getRepositories()} method to manage the repositories.</p>
     *
     * <h3>Multi-project Builds</h3>
     *
     * <p>Projects are arranged into a hierarchy of projects. A project has a name, and a fully qualified path which
     * uniquely identifies it in the hierarchy.</p>
     *
     * <h3>Plugins</h3>
     *
     * <p>
     * Plugins can be used to modularise and reuse project configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyFailingTest", methodName: "fail2", task: ":secondTest")
            // because of --continue we get a different exception hierarchy
            def e = thrown(BuildException)
            normaliseLineSeparators(e.cause.causes[0].cause.message) == "Execution failed for task ':secondTest'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

            }
            if (parametersType == noParamsType) {
                return null;
            }
            return parametersType;
        }
    
        /**
         * Walk the type hierarchy until we find the interface type and keep track the chain of the type parameters.
         *
         * E.g.: For `interface Baz<T>`, interface `Bar<T extends CharSequence> extends Baz<T>` and `class Foo implements Bar<String>`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

         *
         * The `confs` mapping is structured as `fromConfiguration -&gt; [targetConf...]`. Targets are collected for all configurations in the `fromConfiguration` hierarchy.
         *   - '*' is a wildcard key, that matches _all_ `fromConfiguration values.
         *       - '*, !A' is a key that matches _all_ `fromConfiguration values _except_ 'A'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                    }
                }
            """
    
            then:
            run("help")
        }
    
        def "external dependencies merge analysis is #mergeRun if type hierarchy #typeHierachyChange for local project"() {
            given:
            withIncludedBuild()
            file("included/src/main/java/Foo.java") << "class Foo {}"
            file("included/src/main/java/Bar.java") << "class Bar {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        /**
         * Gets all the super types of the given type. The returned result is ordered by a BFS traversal of the class hierarchy, without any
         * duplicates.
         *
         * @param shouldApproximate see [getDirectSuperTypes]
         */
        public fun KaType.getAllSuperTypes(shouldApproximate: Boolean = false): List<KaType> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top