Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 273 for Hierarchy (0.29 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtils.java

         *
         * <p>Overriding methods are not folded like in the case of {@link Class#getMethods()}. This allows
         * the caller to identify annotations declared at different levels in the hierarchy, and also to identify all
         * the classes declaring a certain method.</p>
         *
         * <p>Method candidates exclude:</p>
         * <ul>
         *     <li>methods defined by {@link Object} and their overrides</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.Configuration.xml

                </tr>
                <tr>
                    <td>transitive</td>
                </tr>
                <tr>
                    <td>extendsFrom</td>
                </tr>
                <tr>
                    <td>hierarchy</td>
                </tr>
                <tr>
                    <td>resolvedConfiguration</td>
                </tr>
                <tr>
                    <td>buildDependencies</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * <p>
     * The {@link ModelMap} type requires that its elements are {@link org.gradle.api.Named}.
     *
     * <h3>Inheritance</h3>
     * <p>
     * Managed types can be arranged into an inheritance hierarchy.
     * Every type in the hierarchy must conform to the constraints of managed types.
     *
     * <h3>Calculated read-only properties</h3>
     * <p>
     * Managed types can contain getter methods that return calculated values, based on other properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExternalModuleDependency.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    /**
     * <p>A {@code ExternalModuleDependency} is a {@link Dependency} on a module outside the current project hierarchy.</p>
     */
    public interface ExternalModuleDependency extends ExternalDependency {
        /**
         * Returns whether or not Gradle should always check for a change in the remote repository.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 02:46:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

         */
        TaskInputFilePropertyBuilder file(Object path);
    
        /**
         * Registers an input directory hierarchy. All files found under the given directory are treated as input files for
         * this task.
         *
         * <p>An input directory hierarchy ignores empty directories by default. See {@link TaskInputFilePropertyBuilder#ignoreEmptyDirectories()}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

         */
        @Override
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the copy destination.
         * <p>
         * Always uses '/' as the hierarchy separator, regardless of platform file separator.
         * Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path, relative to the root of the copy destination. Never returns null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

     * limitations under the License.
     */
    
    package org.gradle.model;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Represents an element in a model. Elements are arranged in a hierarchy.
     */
    @Incubating
    public interface ModelElement extends Named {
        /**
         * Returns the name of this element. Each element has a name associated with it, that uniquely identifies the element amongst its siblings.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/BasicIdeaModelBuilder.java

    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    
    /**
     * Builds the {@link org.gradle.tooling.model.idea.BasicIdeaProject} model
     * that contains the Idea module hierarchy without resolving dependencies.
     */
    public class BasicIdeaModelBuilder implements ToolingModelBuilder {
        private final IdeaModelBuilderInternal ideaModelBuilder;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:13:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/BuildEnvironmentBuilder.java

    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Builds the GradleProject that contains the project hierarchy and task information
     */
    public class BuildEnvironmentBuilder implements ToolingModelBuilder {
        private final FileCollectionFactory fileCollectionFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/format/format.go

    	Allocated uint64
    	NextGC    uint64
    }
    
    const (
    	ProcsSection = 0 // where Goroutines or per-P timelines are presented.
    	StatsSection = 1 // where counters are presented.
    	TasksSection = 2 // where Task hierarchy & timeline is presented.
    )
    
    type GoroutineCountersArg struct {
    	Running   uint64
    	Runnable  uint64
    	GCWaiting uint64
    }
    
    type ThreadCountersArg struct {
    	Running   int64
    	InSyscall int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top