Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,938 for classy3 (0.19 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotated.kt

    /**
     * Checks if entity has annotation with specified [classId].
     *
     * @see [KaAnnotationList.contains]
     */
    @Deprecated("Use 'annotations' instead.", replaceWith = ReplaceWith("classId in annotations"))
    public fun KaAnnotated.hasAnnotation(classId: ClassId): Boolean {
        return annotations.contains(classId)
    }
    
    /**
     * A list of annotations applied with specified [classId].
     *
     * @see [KaAnnotationList.classIds]
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/OutgoingVariantsMutationIntegrationTest.groovy

                doLast {
                    def classes = configurations.compile.outgoing.variants['classes']
                    classes.attributes.attribute(format, 'classes2')
                }
            }
            task mutateAfterResolve {
                doLast {
                    configurations.compile.resolve()
                    def classes = configurations.compile.outgoing.variants['classes']
                    classes.attributes.attribute(format, 'classes-dir')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/antbuilder/AntBuilderMemoryLeakTest.groovy

                        Class[] dup = new Class[classes.length * 2]
                        System.arraycopy(classes, 0, dup, 0, classes.length)
                        System.arraycopy(classes, 0, dup, classes.length, classes.length)
                        classes = dup
                    }
                    i++
                }
            } catch (OutOfMemoryError e) {
                classes = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 26 09:30:27 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GradleType.kt

    internal
    object GradleType {
    
        val artifactHandler = classOf<ArtifactHandler>()
    
        val configurablePublishArtifact = classOf<ConfigurablePublishArtifact>()
    
        val dependencyConstraintHandler = classOf<DependencyConstraintHandler>()
    
        val dependencyConstraint = classOf<DependencyConstraint>()
    
        val dependencyHandler = classOf<DependencyHandler>()
    
        val dependency = classOf<Dependency>()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top