Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for hierarchyOf (0.43 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. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    1. We generate interceptors from the annotations declared in the source code 
    2. We collect Gradle API type hierarchy
    
    The first one is important for both configuration cache instrumentation and API upgrades while the second one is used just for API upgrades. 
    Collecting the Gradle API type hierarchy is fully automatic, while declaring interceptors have to be done by Gradle developers. 
    
    ```mermaid
    flowchart TB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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