Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 144 for Hierarchy (0.31 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultProjectSchemaProviderTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class DefaultProjectSchemaProviderTest {
    
        @Test
        fun `chooses first public interface in type hierarchy`() {
    
            val androidExtensionsSchema = DefaultExtensionsSchema.create(
                listOf(
                    extensionSchema(
                        "kotlinOptions",
                        typeOf<KotlinJvmOptionsImpl>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/ProjectsIdentifiedProgressDetails.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization;
    
    import java.util.Set;
    
    /**
     * Fired once the hierarchy of projects is finalized for a build in the tree, and before any build operations
     * that reference those projects are executed.
     *
     * @since 8.0
     */
    public interface ProjectsIdentifiedProgressDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    import javax.annotation.concurrent.Immutable;
    
    /**
     * Represents a group of problems.
     * <p>
     * Groups are organized in hierarchy where the parent group should represent the more broad problem group.
     * <p>
     * Two problem groups  are considered equal if their {@link #getName()} and their parents' are equal.
     *
     * @since 8.8
     * @see ProblemId
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/WatchedHierarchiesTest.groovy

                missing(dir.absolutePath + "/missing.txt")
            ]))
            then:
            rootsOf(watched) == []
            1 * watchable.stream() >> Stream.of(dir)
        }
    
        def "watches only outermost hierarchy"() {
            def watchable = Mock(WatchableHierarchies)
            def parent = new File("parent").absoluteFile
            def child = new File(parent, "child").absoluteFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/AllFeaturesShouldBeAnnotated.groovy

        @Override
        void visitSpecAnnotation(AllFeaturesShouldBeAnnotated runFor, SpecInfo spec) {
            while (spec.subSpec != null) {
                // Find the bottom spec in the hierarchy
                spec = spec.subSpec
            }
    
            if (!spec.getReflection().isAnnotationPresent(RunFor) &&
                !spec.getReflection().isAnnotationPresent(Ignore) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/api/internal/AbstractBuildableComponentSpec.java

                buildTask.dependsOn(buildTaskDependencies);
            }
        }
    
        @Override
        public TaskDependency getBuildDependencies() {
            // TODO maybe inject the task dependency factory into this type hierarchy, too
            final TaskDependencyFactory taskDependencyFactory = DefaultTaskDependencyFactory.withNoAssociatedProject();
            return taskDependencyFactory.visitingDependencies(context -> {
                if (buildTask == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsContinuousIntegrationTest.groovy

            waitForBuild()
            stopGradle()
            afterBuild()
    
            then: "test build operations are emitted in expected hierarchy"
            def testRootOperations = operations.all(ExecuteTestBuildOperationType) {
                it.details.testDescriptor.name.startsWith("Gradle Test Run")
            }
            testRootOperations.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationTransformUtils.java

        }
    
        public static final String ANALYSIS_OUTPUT_DIR = "analysis";
        public static final String MERGE_OUTPUT_DIR = "merge";
        public static final String TYPE_HIERARCHY_ANALYSIS_FILE_NAME = "instrumentation-hierarchy.bin";
        public static final String DEPENDENCY_ANALYSIS_FILE_NAME = "instrumentation-dependencies.bin";
    
        public static InstrumentationInputType getInputType(File input) {
            if (isInstrumentationMarkerFile(input)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:06:06 UTC 2024
    - 3.1K bytes
    - Viewed (1)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ProjectDependency.java

    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * <p>A {@code ProjectDependency} is a {@link Dependency} on another project in the current project hierarchy.</p>
     */
    @HasInternalProtocol
    @SuppressWarnings("deprecation") // Because of SelfResolvingDependency
    public interface ProjectDependency extends ModuleDependency, SelfResolvingDependency {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileTree.java

    import org.gradle.api.tasks.util.PatternFilterable;
    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * <p>A {@code FileTree} represents a hierarchy of files. It extends {@link FileCollection} to add hierarchy query and
     * manipulation methods. You typically use a {@code FileTree} to represent files to copy or the contents of an
     * archive.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top