Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for setDepth (0.2 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. maven-core/src/test/resources/org/apache/maven/extension/test-extension-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: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  3. 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)
  4. maven-core/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: Fri Oct 23 23:48:02 UTC 2009
    - 164.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

                Path.path(":project").child(name)
            }
            getGradle() >> Mock(GradleInternal) {
                getIdentityPath() >> Path.path(":")
            }
            getOwner() >> Mock(ProjectState) {
                getDepth() >> 0
                getProjectPath() >> Path.path(":project")
            }
            getServices() >> Mock(ServiceRegistry)
            getTaskDependencyFactory() >> TestFiles.taskDependencyFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
    
      if (axis < -1) {
        return op.emitOpError() << "expected axis (" << axis
                                << ") to be -1 or between [0, rank(indices()))";
      }
    
      if (!IsOfRankOrUnranked(op.getDepth(), 0)) {
        return op.emitOpError() << "requires depth to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOnValue(), 0)) {
        return op.emitOpError() << "requires on_value to be a scalar";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top