Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for visio (0.09 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneAnnotationsResolver.kt

            val result = mutableListOf<KtDeclaration>()
    
            val visitor = declarationRecursiveVisitor visit@{
                val isLocal = when (it) {
                    is KtClassOrObject -> it.isLocal
                    is KtFunction -> it.isLocal
                    is KtProperty -> it.isLocal
                    else -> return@visit
                }
    
                if (!isLocal) {
                    result += it
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                throw IllegalArgumentException("Found artifact set $source but was not expecting an artifact set")
            } else {
                FileCollectionStructureVisitor.VisitType.Visit
            }
    
        override fun visitCollection(source: FileCollectionInternal.Source, contents: MutableIterable<File>) {
            elements.addAll(contents)
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/ArtifactCollectionCodec.kt

        override fun prepareForVisit(source: FileCollectionInternal.Source): FileCollectionStructureVisitor.VisitType {
            return if (source is TransformedArtifactSet) {
                // Represents artifact transform outputs. Visit the source rather than the files
                // Transforms may have inputs or parameters that are task outputs or other changing files
                // When this is not the case, we should run the transform now and write the result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/CalculateArtifactsCodec.kt

            }
    
            override fun visit(visitor: ResolvedArtifactSet.Visitor) {
                visitor.visitArtifacts(this)
            }
    
            override fun startFinalization(actions: BuildOperationQueue<RunnableBuildOperation>, requireFiles: Boolean) {
            }
    
            override fun visit(visitor: ArtifactVisitor) {
                val displayName = Describables.of(ownerId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/build.gradle.kts

        implementation(project(":serialization"))
        implementation(project(":testing-base"))
    
        implementation(libs.guava)
    
        compileOnly(libs.groovy) {
            because("some used APIs (e.g. FileTree.visit) provide methods taking Groovy closures which causes compile errors")
        }
    
        testImplementation(project(":resources"))
    
        integTestImplementation(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            "'files=' + { def names = new TreeSet(); tree.visit { d -> names.add(d.file.name) }; names }()" | "files=[dir, file1, file2]" | "files=[dir, file1, file2, file3]" | "files=[dir, file2, file3]"
            // TODO - should not invalidate the cache for this expression
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            visitor.start(resolveState.getRoot());
    
            // Visit the selectors
            for (DependencyGraphSelector selector : resolveState.getSelectors()) {
                visitor.visitSelector(selector);
            }
    
            // Visit the nodes prior to visiting the edges
            for (NodeState nodeState : resolveState.getNodes()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

        /**
         * Traverses this node and potentially its children using the specified visitor.
         *
         * @param visitor the visitor to call back, must not be {@code null}
         * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings
         */
        boolean accept(@Nonnull NodeVisitor visitor);
    
        /**
         * Returns a new tree starting at this node, filtering the children.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/build.gradle.kts

            // clean now takes care of those files as well
            testFiles.get().asFileTree.matching {
                include("**/read-only-cache/**")
            }.visit { this.file.setWritable(true) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            super.addURL(url);
        }
    
        @Override
        public String toString() {
            return getClass().getSimpleName() + "(" + name + ")";
        }
    
        @Override
        public void visit(ClassLoaderVisitor visitor) {
            URL[] urls = getURLs();
            visitor.visitSpec(new Spec(name, Arrays.asList(urls)));
            visitor.visitClassPath(urls);
            visitor.visitParent(getParent());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top