Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,938 for classy3 (0.3 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webservice/webservice.iml.xml

        </orderEntry>
        <orderEntry type="module-library">
          <library>
            <CLASSES>
              <root url="jar://$MODULE_DIR$/lib/compile-1.0.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES/>
          </library>
        </orderEntry>
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

            def classes = findClasses()
            assertThat(classes.keySet(), hasItem(testClass))
            def classFile = classes.get(testClass)
            assertThat(classFile, notNullValue())
            return new XmlSlurper().parse(classFile)
        }
    
        private def findTestClassStartsWith(String testClass) {
            def classes = findClasses()
            assertThat(classes.keySet(), hasItem(startsWith(testClass)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

      }
    
      /** Global cache of classes to their flattened hierarchy of supertypes. */
      private static final LoadingCache<Class<?>, ImmutableSet<Class<?>>> flattenHierarchyCache =
          CacheBuilder.newBuilder()
              .weakKeys()
              .build(
                  new CacheLoader<Class<?>, ImmutableSet<Class<?>>>() {
                    // <Class<?>> is actually needed to compile
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/project-with-source/build.xml

        <property name="classes.dir" location="\${build.dir}/classes"/>
        <property name="test.classes.dir" location="\${build.dir}/test-classes"/>
        <property name="test.reports.dir" location="\${build.dir}/test-reports"/>
    
        <target name="clean">
            <delete dir="\${build.dir}"/>
        </target>
    
        <target name="compile">
            <mkdir dir="\${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRuleTest.groovy

                classes[it.simpleName] = c
            }
            [OldBase, OldSub, NewBase, NewSub].each {
                classes[it.simpleName] = instanceScopedPool.get(it.name)
            }
    
            classes['OldBase'].superclass = classes['OldSuperInternal']
            classes['NewBase'].superclass = classes['NewSuperInternal']
            classes['OldSub'].superclass = classes['OldBase']
            classes['NewSub'].superclass = classes['NewBase']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

        }
    
        def "ignores comments and empty lines in processor declaration"() {
            given:
            def jar = tmpDir.file("classes.jar")
            jar << JarUtils.jarWithContents((PROCESSOR_DECLARATION): "#a comment\n\n")
            def dir = tmpDir.file("classes")
            dir.file(PROCESSOR_DECLARATION) << "#a comment\n\n"
            def cp = files(jar, dir)
    
            expect:
            detector.detectProcessors(cp) == [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.Project.ant(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Method <org.gradle.api.Project.artifacts(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            return otherVersion
        }
    
        def getDocsPath() {
            return classes.isScala3() ? "build/docs/scaladoc/_empty_" : "build/docs/scaladoc"
        }
    
        def setup() {
            classes.scalaVersion = version.toString()
        }
    
        def "scaladoc produces output"() {
            classes.baseline()
            buildScript(classes.buildScript())
    
            when:
            succeeds scaladoc
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

            fe10Annotations.hasAnnotation(classId.asSingleFqName())
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
            if (classId in ignoredAnnotations) return@withValidityAssertion emptyList()
    
            fe10Annotations.mapIndexedNotNull { index, annotation ->
                if (annotation.classIdForAnnotation != classId) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. 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)
Back to top