Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 264 for hierarchy (0.17 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

         * slightly increasing the speed a test class runs, especially one with many test methods defined on itself or in its type hierarchy.
         */
        private final static Set<String> EXTRACTED_JARS = new HashSet<>();
        private final TestDirectoryProvider testDirectoryProvider;
    
        private Class<?> declaringTestClass;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

    import static org.gradle.internal.snapshot.ChildMapFactory.childMapFromSorted;
    import static org.gradle.internal.snapshot.SnapshotVisitResult.CONTINUE;
    
    /**
     * A snapshot of an existing directory hierarchy.
     *
     * Includes snapshots of any child element and the Merkle tree hash.
     */
    public class DirectorySnapshot extends AbstractFileSystemLocationSnapshot {
        private final ChildMap<FileSystemLocationSnapshot> children;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    +
    Definition can complement `strictly` or `require`.
    +
    When defined, this overrides any previous `prefer` declaration and clears previous `reject`.
    
    There is also an additional term outside of the level hierarchy:
    
    [[sec:rejected-version]]
    `reject`::
    Declares that specific version(s) are not accepted for the module.
    This will cause dependency resolution to fail if the only versions selectable are also rejected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

        get() = accessorTypePrecedenceSequence().find { it.isKotlinPublic }
    
    
    internal
    fun Class<*>.accessorTypePrecedenceSequence(): Sequence<Class<*>> = sequence {
    
        // First, all the classes in the hierarchy, subclasses before superclasses
        val classes = ancestorClassesIncludingSelf.toList()
        yieldAll(classes)
    
        // Then all supported interfaces sorted by subtyping (subtypes before supertypes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. 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)
Back to top