Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 265 for hierarchy (0.14 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            assertBothExistsAndOneIsBeforeOther(hierarchy, middle1, root1);
            assertBothExistsAndOneIsBeforeOther(hierarchy, middle2, root2);
        }
    
        private static void assertBothExistsAndOneIsBeforeOther(Set<Configuration> hierarchy, Configuration beforeConf, Configuration afterConf) {
            assert hierarchy.contains(beforeConf)
            assert hierarchy.contains(afterConf)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXContainerItem.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Superclass in Xcode's object hierarchy, has no non-structural functionality here.
     */
    public abstract class PBXContainerItem extends PBXObject {
    
        @Override
        public String isa() {
            return "PBXContainerItem";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 903 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

        /**
         * Returns the project directory.
         */
        File getProjectDir();
    
        /**
         * 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.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXContainer.java

     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Superclass of all container types. This is here to reflect Xcode's object hierarchy, and does
     * not implement any special functionality.
     */
    public abstract class PBXContainer extends PBXObject {
        @Override
        public String isa() {
            return "PBXContainer";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 950 bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessConcurrencyTest.groovy

    class DefaultFileSystemAccessConcurrencyTest extends AbstractFileSystemAccessTest {
    
        def "parallel invalidation yields correct results"() {
            def dir = temporaryFolder.createDir("some/deep/hierarchy")
            (1..1000).each {
                def subdir = dir.file(it)
                subdir.file("in-dir.txt").createFile()
            }
    
            allowFileSystemAccess(true)
            read(dir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExternalDependency.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    
    /**
     * <p>An {@code ExternalDependency} is a {@link Dependency} on a source outside the current project hierarchy.</p>
     */
    public interface ExternalDependency extends ModuleDependency, ModuleVersionSelector {
    
        /**
         * Returns whether or not the version of this dependency should be enforced in the case of version conflicts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 06 18:52:15 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/HierarchicalElement.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents an element which belongs to some hierarchy.
     *
     * @since 1.0-milestone-5
     */
    public interface HierarchicalElement extends Element {
    
        /**
         * Returns the parent of this element, or {@code null} if there is no parent.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top