Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,956 for classy1 (0.16 sec)

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

        /**
         * Checks if entity contains annotation with specified [classId].
         *
         * The semantic is equivalent to
         * ```
         * annotationsList.hasAnnotation(classId) == annotationsList.annotations.any { it.classId == classId }
         * ```
         * @param classId [ClassId] to search
         */
        public operator fun contains(classId: ClassId): Boolean
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

            fails("check")
    
            then:
            failure.assertHasFailures(2)
        }
    
    
        private badCode() {
            // No Warnings
            file("src/main/java/org/gradle/Class1.java") <<
                "package org.gradle; class Class1 { public boolean isFoo(Object arg) { return true; } }"
            // PMD Lvl 2 Warning BooleanInstantiation
            // PMD Lvl 3 Warning OverrideBothEqualsAndHashcode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

            child.publish()
    
            buildFile << """
    repositories {
        maven { url '${mavenRepo.uri}' }
    }
    configurations { compile }
    dependencies { compile 'org:child:1.0' }
    task libs { doLast { assert configurations.compile.files*.name == ['child-1.0.jar', 'child_dep-1.7.jar', 'typed_dep-1.8.bar', 'classified_dep-1.9-classy.jar', 'fq_dep-2.1-classy.bar'] } }
    """
    
            expect:
            succeeds 'libs'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginDependenciesIntegrationTest.groovy

        <module name="TreeWalker">
            <module name="TypeName"/>
        </module>
    </module>
            """
        }
    
        private void badCode() {
            file("src/main/java/org/gradle/class1.java") << "package org.gradle; class class1 { }"
        }
    
        private void defaultLocale(String defaultLocale) {
            executer.withDefaultLocale(new Locale(defaultLocale))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

    dependencies {
        compile 'group:projectA:1.2@jar'
        compile 'group:projectB:1.2:classy@jar'
    }
    task retrieve(type: Sync) {
        into 'libs'
        from configurations.compile
    }
    """
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
            projectB.pom.expectGet()
            projectB.artifact(classifier: 'classy').expectGet()
    
            then:
            succeeds('retrieve')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc_test.go

    				classes[j].upperBound = x
    				classes[j].lowerBound = x * math.Max(0, 1.25*rands.Float64()-1)
    				classes[j].target = classes[j].lowerBound + rands.Float64()
    				lowSum += classes[j].lowerBound
    				highSum += classes[j].upperBound
    			})
    		default:
    			style = "not-set-by-bounds"
    			for j := 0; j < probLen; j++ {
    				x := math.Max(0, rands.Float64()*5-1)
    				classes[j].lowerBound = x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 18:17:27 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top