Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for setDepth (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

            private final ProjectLifecycleController controller;
            private final Lazy<Integer> depth = Lazy.unsafe().of(() -> getParent() != null ? getParent().getDepth() + 1 : 0);
    
            ProjectStateImpl(
                BuildState owner,
                Path identityPath,
                Path projectPath,
                String projectName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

        /**
         * Returns the nesting level of a project in a multi-project hierarchy. For single project builds this is always
         * 0. In a multi-project hierarchy 0 is returned for the root project.
         */
        int getDepth();
    
        /**
         * Returns the identifier of the default component produced by this project.
         */
        ProjectComponentIdentifier getComponentIdentifier();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

        private final String projectName;
    
        public TestPageGenerator(String projectName) {
            this.projectName = projectName;
        }
    
        @Override
        protected int getDepth() {
            return 1;
        }
    
        @Override
        public void render(final PerformanceTestHistory testHistory, Writer writer) {
            // @formatter:off
            new MetricsHtml(writer) {{
                html();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

        override fun getNormalization(): InputNormalizationHandler =
            delegate.normalization
    
        override fun setVersion(version: Any) {
            delegate.version = version
        }
    
        override fun getDepth(): Int =
            delegate.depth
    
        override fun getProviders(): ProviderFactory =
            delegate.providers
    
        override fun getSubprojects(): MutableSet<Project> =
            delegate.subprojects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    XmlPullParserExcepti; public int getNamespaceCount(int) throws XmlPullParserExcepti; public String getNamespacePrefix(int) throws XmlPullParserExcepti; public String getNamespaceUri(int) throws XmlPullParserExcepti; public String getNamespace(String); public int getDepth(); private static int findFragment(int, char[], int, int); public String getPositionDescripti(); public int getLineNumber(); public int getColumnNumber(); public boolean isWhitespace() throws XmlPullParserExcepti; public String getText(); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            this.buildScriptSource = buildScriptSource;
            this.gradle = gradle;
    
            if (parent == null) {
                depth = 0;
            } else {
                depth = parent.getDepth() + 1;
            }
    
            services = serviceRegistryFactory.createFor(this);
            taskContainer = services.get(TaskContainerInternal.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    XmlPullParserExcepti; public int getNamespaceCount(int) throws XmlPullParserExcepti; public String getNamespacePrefix(int) throws XmlPullParserExcepti; public String getNamespaceUri(int) throws XmlPullParserExcepti; public String getNamespace(String); public int getDepth(); private static int findFragment(int, char[], int, int); public String getPositionDescripti(); public int getLineNumber(); public int getColumnNumber(); public boolean isWhitespace() throws XmlPullParserExcepti; public String getText(); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    IllegalArgumentExcep, IllegalStateExceptio; public abstract void setPrefix(String, String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract String getPrefix(String, boolean) throws IllegalArgumentExcep; public abstract int getDepth(); public abstract String getNamespace(); public abstract String getName(); public abstract XmlSerializer startTag(String, String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract XmlSerializer attribute(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                updateScope = true;
            }
    
            /* current POM rules all, if nearest is in current pom, do not update its artifactScope */
            if ((nearest.getDepth() < 2) && updateScope) {
                updateScope = false;
    
                fireEvent(ResolutionListener.UPDATE_SCOPE_CURRENT_POM, listeners, nearest, farthestArtifact);
            }
    
            if (updateScope) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                return delegate.convention
            }
    
            override fun depthCompare(otherProject: Project): Int {
                return delegate.depthCompare(otherProject)
            }
    
            override fun getDepth(): Int {
                return delegate.depth
            }
    
            override fun project(path: String, configureClosure: Closure<*>): Project {
                return project(path, ConfigureUtil.configureUsing(configureClosure))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top