Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for hierarchyOf (0.15 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/XRef.java

    import antlr.preprocessor.Hierarchy;
    
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    
    /**
     * Models cross-reference (x-ref) info about {@link GrammarFileMetadata grammar files} such as {@link #filesByPath}, {@link #filesByExportVocab} and {@link #filesByClassName}.
     */
    public class XRef {
        private final Hierarchy antlrHierarchy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementAdapter.java

         * by getName() is not unique in the hierarchy.
         *
         * @param element the element, cannot be null
         * @return the identity name of the element, never null
         */
        String getIdentityName(T element);
    
        /**
         * Returns the parent in this element's hierarchy.
         *
         * @param element the child element, cannot be null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         *
         * For example, this removes everything from the root which can't be kept after the current build finished.
         * This is anything which is not within a watchable hierarchy or in a cache directory.
         *
         * @return the snapshot hierarchy without snapshots which can't be kept till the next build.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchies.java

            outputHierarchy.clear();
            destroyableHierarchy.clear();
        }
    
        /**
         * Create the input node access hierarchy.
         *
         * For performance reasons, we keep one input node access hierarchy per project,
         * so we only have a factory method here and this is used to create the hierarchy in {@link org.gradle.execution.ProjectExecutionServices}.
         */
        public InputNodeAccessHierarchy createInputHierarchy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *     <dd>The list of file system hierarchies that we've activated a file system probe for.
     *     We list every hierarchy here, even if there are ones nested inside others.
     *     See {@link FileWatcherProbeRegistry}.</dd>
     * </dl>
     */
    public interface FileWatcherUpdater {
        /**
         * Registers a watchable hierarchy.
         *
         * @see FileWatcherRegistry#registerWatchableHierarchy(File, SnapshotHierarchy)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/TypesTest.groovy

        }
    
        interface Iface {}
    
        class Child extends Base implements Serializable, Iface {
            @Nullable
            Object doSomething() { null }
        }
    
        def "walking type hierarchy happens breadth-first"() {
            def visitor = Mock(Types.TypeVisitor)
            when:
            Types.walkTypeHierarchy(Child, [Object, GroovyObject], visitor)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshot.java

         */
        Stream<FileSystemLocationSnapshot> roots();
    
        /**
         * Walks the whole hierarchy represented by this snapshot.
         *
         * The walk is depth first.
         */
        SnapshotVisitResult accept(FileSystemSnapshotHierarchyVisitor visitor);
    
        /**
         * Walks the whole hierarchy represented by this snapshot.
         *
         * The walk is depth first.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/DefaultIvyModuleResolveMetadata.java

            ImmutableList<ModuleComponentArtifactMetadata> artifacts = configurationHelper.filterArtifacts(name, hierarchy);
            ImmutableList<ExcludeMetadata> excludesForConfiguration = configurationHelper.filterExcludes(hierarchy);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

                if (watchedFiles.contains(watchableHierarchy)) {
                    // Need to stop watching this hierarchy
                    return !hasSnapshotsToWatch;
                } else {
                    // Need to start watching this hierarchy
                    return hasSnapshotsToWatch;
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

    import static org.gradle.internal.snapshot.impl.SerializedLambdaQueries.serializedLambdaFor;
    
    /**
     * Identifies a type in a classloader hierarchy. The type is identified by its name,
     * the classloader hierarchy by its hash code.
     */
    public abstract class ImplementationSnapshot implements ValueSnapshot {
    
        protected final String classIdentifier;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top