Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for hierarchyOf (0.17 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

                    compositeSubstitute()
                }
            }
        }
    
        def "resolves project substitution for build based on rootProject name"() {
            given:
            def buildB2 = rootDir.file("hierarchy", "buildB");
            buildB2.file('settings.gradle') << """
                rootProject.name = 'buildB2'
    """
            buildB2.file('build.gradle') << """
                apply plugin: 'java'
                group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

        localClassPath: ClassPath,
        localSourcePath: ClassPath
    ): IntermediateScriptModel? {
    
        val buildScript = project.discoverBuildScript()
            ?: return null
    
        // TODO:isolated this relies on the hierarchy of classloaders
        val compilationClassPath = project.scriptCompilationClassPath
    
        val accessorsClassPath = project.serviceOf<ClassPathModeExceptionCollector>().runCatching {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. 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)
  5. android/guava/src/com/google/common/reflect/TypeResolver.java

     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
     * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
     * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in
     * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            childSpec.addChildSpecListener((path, spec) -> {
                CopySpecAddress childPath = new DefaultCopySpecAddress(null, DefaultCopySpec.this, additionIndex).append(path);
                fireChildSpecListeners(childPath, spec);
            });
    
            // Notify upwards of currently existing descendant spec hierarchy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeResolver.java

     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
     * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
     * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in
     * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    [[sub:config-inheritance-composition]]
    === Configuration inheritance and composition
    
    A configuration can extend other configurations to form an inheritance hierarchy.
    Child configurations inherit the whole set of dependencies declared for any of its superconfigurations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    link:{javadocPath}/org/gradle/api/file/ConfigurableFileTree.html[ConfigurableFileTree]:: Hierarchy of files
    Factories;;
    * link:{javadocPath}/org/gradle/api/model/ObjectFactory.html#fileTree--[ObjectFactory.fileTree()]
    
    link:{javadocPath}/org/gradle/api/file/SourceDirectorySet.html[SourceDirectorySet]:: Hierarchy of source directories
    Factories;;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top