Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for visitTar (0.17 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/contracts/descriptorContractUtils.kt

        // Util function to avoid hard coding names of the classes. Type inference will do a better job figuring out the best type to cast to.
        // This visitor isn't type-safe anyway
        private inline fun <reified T> ContractDescriptionElement.accept() = accept(this@ContractDescriptionElementToAnalysisApi, Unit) as T
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

        )
    
        // Util function to avoid hard coding names of the classes. Type inference will do a better job figuring out the best type to cast to.
        // This visitor isn't type-safe anyway
        private inline fun <reified T> ConeContractDescriptionElement.accept() =
            accept(this@ConeContractDescriptionElementToAnalysisApi, Unit) as T
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

        }
    
        private static File findMarkerFile(File directory) {
            File markerFile
            new SingleIncludePatternFileTree(directory, "**").visit(new FileVisitor() {
                @Override
                void visitDir(FileVisitDetails dirDetails) {
                }
    
                @Override
                void visitFile(FileVisitDetails fileDetails) {
                    if (fileDetails.file.name == ".ready") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

    import java.util.function.LongFunction;
    
    /**
     * Adapts a {@link DependencyArtifactsVisitor} to a {@link DependencyGraphVisitor}. Calculates the artifacts contributed by each edge in the graph and forwards the results to the artifact visitor.
     */
    public class ResolvedArtifactsGraphVisitor implements DependencyGraphVisitor {
        private int nextId;
        private final Long2ObjectMap<ArtifactsForNode> artifactsByNodeId = new Long2ObjectOpenHashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

        }
    
        public PersistentCache open(File cacheDir, String displayName) {
            return new InMemoryCache(cacheDir, displayName, CleanupAction.NO_OP);
        }
    
        @Override
        public void visitCaches(CacheVisitor visitor) {
            throw new UnsupportedOperationException();
        }
    
        private class InMemoryCache implements PersistentCache {
            private final File cacheDir;
            private final String displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

     */
    internal fun collectSourceFilePaths(root: Path): List<Path> {
        // NB: [Files#walk] throws an exception if there is an issue during IO.
        // With [Files#walkFileTree] with a custom visitor, we can take control of exception handling.
        val result = mutableListOf<Path>()
        Files.walkFileTree(
            root,
            object : SimpleFileVisitor<Path>() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

    import org.eclipse.aether.resolution.DependencyRequest;
    import org.eclipse.aether.util.artifact.ArtifactIdUtils;
    import org.eclipse.aether.util.graph.manager.DependencyManagerUtils;
    import org.eclipse.aether.util.graph.visitor.DependencyGraphDumper;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultProjectDependenciesResolver implements ProjectDependenciesResolver {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top