Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,956 for classy1 (0.25 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

                }
            }
    
        override fun getClassLikeDeclarationByClassId(classId: ClassId): KtClassLikeDeclaration? {
            return getClassLikeDeclarationsByClassId(classId).firstOrNull()
        }
    
        override fun getAllClassesByClassId(classId: ClassId): Collection<KtClassOrObject> {
            return getClassLikeDeclarationsByClassId(classId).filterIsInstance<KtClassOrObject>().toList()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

        }
    
        private TestCaseExecution success(long classId, long id) {
            return new TestCaseExecutionSuccess(outputProvider(classId, id), options);
        }
    
        private TestCaseExecution skipped(long classId, long id) {
            return new TestCaseExecutionSkipped(outputProvider(classId, id), options);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/multiProject/kotlin/web/build.xml

        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <!-- tag::build-required[] -->
        <target name="buildRequiredProjects">
            <ant dir="${root.dir}/util" target="build"/>
        </target>
        <!-- end::build-required[] -->
    
        <target name="compile" depends="buildRequiredProjects">
            <mkdir dir="${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 912 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

         *
         * Starts at this class and capture all classes that reference this class and all classes and resources that were generated from this class.
         * Then does the same analysis for all classes that expose this class on their ABI recursively until no more new classes are discovered.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

            currentMetaAnnotations: Set<ClassId>?,
            indent: Int
        ) {
            appendLine("annotations: [".indented(indent))
            for (annotation in annotations) {
                appendLine(DebugSymbolRenderer().renderAnnotationApplication(analysisSession, annotation).indented(indent = indent + 2))
                if (currentMetaAnnotations != null) {
                    val classId = annotation.classId ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepositoryTest.groovy

            TestDomainObject value2 = new TestDomainObject('a')
            repository.put('class1', value1)
            repository.put('class2', value2)
            Closure cl = Mock()
    
            when:
            repository.each(cl)
    
            then:
            1 * cl.call(['class1', value1] as Object[])
            1 * cl.call(['class2', value2] as Object[])
            0 * cl._
        }
    
        def canIterateOverClassesUsingAction() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            }
    
            public void onOutput(long classId, TestOutputEvent outputEvent) {
                onOutput(classId, 0, outputEvent);
            }
    
            public void onOutput(long classId, long testId, TestOutputEvent outputEvent) {
                boolean stdout = outputEvent.getDestination() == TestOutputEvent.Destination.StdOut;
                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `output.classesDirs` — (read-only) link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]::
    _Default value_: `layout.buildDirectory.dir("classes/java/$name")`, e.g. _build/classes/java/main_
    +
    The directories to generate the classes of this source set into. May contain directories for other JVM languages, e.g. _build/classes/kotlin/main_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/tests/outgoingVariants.out

    Secondary variants (*)
        - Variant : classes
           - Attributes
              - org.gradle.category            = library
              - org.gradle.dependency.bundling = external
              - org.gradle.jvm.version         = 11
              - org.gradle.libraryelements     = classes
              - org.gradle.usage               = java-api
           - Artifacts
              - build/classes/java/main (artifactType = java-classes-directory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/jvm/JavaModuleDetectorTest.groovy

            when:
            def p = path('lib.jar', 'module.jar', 'classes', 'classes-module', 'automaticModule.jar')
    
            then:
            inferClasspath(p) == ['lib.jar', 'classes']
            inferModulePath(p) == ['module.jar', 'classes-module', 'automaticModule.jar']
            inferClasspath(p) == ['lib.jar', 'classes']
            inferModulePath(p) == ['module.jar', 'classes-module', 'automaticModule.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 07 13:50:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
Back to top