Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 265 for hierarchy (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/IsolatedGradleProjectInternal.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.Serializable;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Represents a Gradle project, isolated from the project hierarchy.
     * <p>
     * <b>This model is internal, and is NOT part of the public Tooling API.</b>
     */
    @NonNullApi
    public class IsolatedGradleProjectInternal implements Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
            // Load the StaticData class in the different sub-sub-projects
            // for a more interesting ClassLoader hierarchy.
            for (projectDir in ['foo/foo', 'bar/bar']) {
                file("$projectDir/build.gradle") << """
                    buildscript { dependencies { classpath(files('${staticDataLib.toURI()}')) } }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

        /**
         * Returns the metadata stored at the absolute path if it exists.
         */
        Optional<MetadataSnapshot> findMetadata(String absolutePath);
    
        /**
         * Returns all root snapshots in the hierarchy below {@code absolutePath}.
         */
        Stream<FileSystemLocationSnapshot> findRootSnapshotsUnder(String absolutePath);
    
        /**
         * Snapshots and stores the result in the VFS.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/AbstractClassLoaderScope.java

            this.id = id;
            this.origin = origin;
            this.classLoaderCache = classLoaderCache;
            this.listener = listener;
        }
    
        /**
         * Unique identifier of this scope in the hierarchy.
         */
        @Override
        public ClassLoaderScopeId getId() {
            return id;
        }
    
        @Nullable
        @Override
        public ClassLoaderScopeOrigin getOrigin() {
            return origin;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

         *
         * <p><b>This will prevent the task's outputs from being shared across different workspaces via the build cache.</b></p>
         */
        ABSOLUTE,
    
        /**
         * Use the location of the file related to a hierarchy.
         *
         * <p>
         *     For files in the root of the file collection, the file name is used as the normalized path.
         *     For directories in the root of the file collection, an empty string is used as normalized path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

        public DefaultSerializerRegistry() {
            this(true);
        }
    
        public DefaultSerializerRegistry(boolean supportClassHierarchy) {
            this.classMatcher = supportClassHierarchy ? SerializerClassMatcherStrategy.HIERARCHY : SerializerClassMatcherStrategy.STRICT;
        }
    
        @Override
        public <T> void register(Class<T> implementationType, final Serializer<T> serializer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    
    /**
     * A collection of files in Xcode's virtual filesystem hierarchy.
     */
    public class PBXGroup extends PBXReference {
        private final List<PBXReference> children;
        private final LoadingCache<String, PBXGroup> childGroupsByName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiGradleProjectCrossVersionSpec.groovy

            taskA.project == project
    
            project.tasks.find { it.name == 'b' && it.path == ':b' }
            project.tasks.find { it.name == 'c' && it.path == ':c' }
        }
    
        def "provides hierarchy"() {
            file('settings.gradle') << "include 'a', 'a:b', 'a:c', 'a:c:d'"
            file('build.gradle') << '''
    task rootTask
    project (':a') { description = 'A rocks!' }
    '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationOverridesProvider.kt

            withValidityAssertion { analysisSession.symbolDeclarationOverridesProvider.getDirectlyOverriddenSymbols(this) }
    
        /**
         * Checks if [this] class has [superClass] as its superclass somewhere in the inheritance hierarchy.
         *
         * N.B. The class is not considered to be a subclass of itself, so `myClass.isSubClassOf(myClass)` is always `false`.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

    import javax.annotation.Nullable;
    import java.util.HashSet;
    import java.util.Map;
    
    /**
     * Fingerprint file system snapshots normalizing the path to the relative path in a hierarchy.
     *
     * File names for root directories are ignored. For root files, the file name is used as normalized path.
     */
    public class RelativePathFingerprintingStrategy extends AbstractDirectorySensitiveFingerprintingStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top