Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for hierarchyOf (0.23 sec)

  1. 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)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

        }
    }
    
    
    internal
    val Project.scriptImplicitImports
        get() = serviceOf<ImplicitImports>().list
    
    
    private
    val Project.hierarchy: Sequence<Project>
        get() = sequence {
            var project = this@hierarchy
            yield(project)
            while (project != project.rootProject) {
                project = project.parent!!
                yield(project)
            }
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. 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)
  4. 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 (0)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    
    /**
     * See [Configuration.getHierarchy].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().hierarchy"), level = DeprecationLevel.HIDDEN)
    val <T : Configuration> NamedDomainObjectProvider<T>.hierarchy: Set<Configuration>
        get() = get().hierarchy
    
    
    /**
     * See [Configuration.resolve].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

         * started.
         */
        boolean afterBuildStarted(WatchMode watchingEnabled, VfsLogging vfsLogging, WatchLogging watchLogging, BuildOperationRunner buildOperationRunner);
    
        /**
         * Register a watchable hierarchy.
         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    // are generated and that they are all a part of the same distributed trace with correct hierarchy and name.
    func TestClientTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/IsolatedGradleProjectInternal.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.Serializable;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Represents a Gradle project, isolated from the project hierarchy.
     * <p>
     * <b>This model is internal, and is NOT part of the public Tooling API.</b>
     */
    @NonNullApi
    public class IsolatedGradleProjectInternal implements Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
            // Load the StaticData class in the different sub-sub-projects
            // for a more interesting ClassLoader hierarchy.
            for (projectDir in ['foo/foo', 'bar/bar']) {
                file("$projectDir/build.gradle") << """
                    buildscript { dependencies { classpath(files('${staticDataLib.toURI()}')) } }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top