Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,927 for classy2 (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

            m1.getArtifact(type: '', ext: '', classifier: 'classy').expectGet()
    
            run 'show'
    
            then:
            outputContains("files: [test-1.0, test-1.0, test-1.0-classy]")
            outputContains("display-names: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
            outputContains("ids: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestResultSerializerTest.groovy

            class1.add(method1)
            class1.add(method2)
            def class2 = new TestClassResult(2, 'Class2', 5678)
            def results = [class1, class2]
    
            when:
            def read = serialize(results)
    
            then:
            read.size() == 2
            def readClass1 = read[0]
            readClass1.className == 'Class1'
            readClass1.startTime == 1234
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            file('src/main/groovy/org/gradle/Class2.java') << 'package org.gradle; class Class2 { }'
            file('src/test/groovy/org/gradle/TestClass2.java') << 'package org.gradle; public class TestClass2 { @org.junit.Test public void test2() { } }'
        }
    
        private badCode() {
            file("src/main/java/org/gradle/class1.java") << "package org.gradle; class class1 { }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultTest.groovy

    import spock.lang.Specification
    
    class TestResultTest extends Specification {
        def canOrderResultsByClassNameAndTestName() {
            ClassTestResults class1 = Mock()
            _ * class1.name >> 'name'
            ClassTestResults class2 = Mock()
            _ * class2.name >> 'a'
            ClassTestResults class3 = Mock()
            _ * class3.name >> 'z'
    
            TestResult result = new TestResult('name', 0, class1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top