Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDepth (0.34 sec)

  1. 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)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *         or greater than the specified object.
         * @see #getDepth()
         */
        int depthCompare(Project otherProject);
    
        /**
         * <p>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.</p>
         */
        int getDepth();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top