Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 507 for visitTar (0.32 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactory.java

            }
    
            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.candidate("Instances of Provider<RegularFile>.");
                visitor.candidate("Instances of Provider<Directory>.");
                visitor.candidate("Instances of Provider<File>.");
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/ListenerBroadcastTest.groovy

            def listener2 = Mock(TestListener)
            def visitor = Mock(Action)
    
            given:
            broadcast.add(listener1)
            broadcast.add(listener2)
    
            when:
            broadcast.visitListeners(visitor)
    
            then:
            1 * visitor.execute(listener1)
    
            then:
            1 * visitor.execute(listener2)
            0 * visitor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

         *
         * @param clazz the type of whose type hierarchy to visit.
         * @param visitor the visitor to call for each type in the hierarchy.
         */
        public static <T> void walkTypeHierarchy(Class<T> clazz, TypeVisitor<? extends T> visitor) {
            walkTypeHierarchy(clazz, OBJECT_TYPE, visitor);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/UnionFileCollectionTest.groovy

            then:
            result.toList() == [file1, file2, file3]
    
            1 * source1.visitStructure(_) >> { FileCollectionStructureVisitor visitor -> visitor.visitCollection(null, [file1, file2]) }
            1 * source2.visitStructure(_) >> { FileCollectionStructureVisitor visitor -> visitor.visitCollection(null, [file2, file3]) }
            0 * _
    
            when:
            def result2 = collection.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ResolvedFileCollectionVisitor.java

        private final FileCollectionStructureVisitor visitor;
        private final Set<File> files = new LinkedHashSet<>();
        private final Set<Throwable> failures = new LinkedHashSet<>();
    
        public ResolvedFileCollectionVisitor(FileCollectionStructureVisitor visitor) {
            this.visitor = visitor;
        }
    
        public Set<Throwable> getFailures() {
            return failures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SortingAnnotationVisitor.java

            AnnotationMember annotation = new AnnotationMember(desc, true);
            SortingAnnotationVisitor visitor =
                new SortingAnnotationVisitor(annotation, super.visitAnnotation(name, desc));
            visitor.parentVisitor = this;
            visitor.annotationValueName = nameOrValue(name);
            return visitor;
        }
    
        @Override
        public void visit(String name, Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ThisBuildOnlyComponentDetailsSerializer.java

            ComponentGraphResolveState component;
            if (decoder.readBoolean()) {
                readComponentData(decoder, visitor);
            } else {
                readComponentReference(decoder, visitor);
            }
        }
    
        private void readComponentReference(Decoder decoder, ResolvedComponentVisitor visitor) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            def collection = new TestFileCollection()
            def visitor = Mock(FileCollectionStructureVisitor)
    
            when:
            collection.visitStructure(visitor)
    
            then:
            1 * visitor.startVisit(FileCollectionInternal.OTHER, collection) >> true
            1 * visitor.visitCollection(FileCollectionInternal.OTHER, collection)
            0 * visitor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactory.java

                result.converted(artifact);
            }
    
            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.candidate("Instances of AbstractArchiveTask").example("jar");
            }
        }
    
        private class PublishArtifactNotationConverter implements NotationConverter<PublishArtifact, MavenArtifact> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IncrementalInputChanges.java

            CollectingChangeVisitor visitor = new CollectingChangeVisitor();
            changes.accept(propertyName, visitor);
            return Cast.uncheckedNonnullCast(visitor.getChanges());
        }
    
        @Override
        public Iterable<InputFileDetails> getAllFileChanges() {
            CollectingChangeVisitor visitor = new CollectingChangeVisitor();
            changes.accept(visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top