Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for classy (0.15 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/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    expectGetMetadata()
                    expectGetArtifact(classifier: 'classy')
                }
            }
            succeeds "checkDep"
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:foo:1.0") {
                        module("org:bar:1.0") {
                            artifact(classifier: 'classy')
                        }
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

            'jar' | 'jar' | 'classy'
            'zip' | 'zip' | null
            'jar' | 'zip' | 'classy'
        }
    
        def "artifact selection context has information about requested artifacts"() {
            def artifact = Stub(IvyArtifactName) {
                getName() >> 'foo'
                getExtension() >> 'jar'
                getType() >> 'type'
                getClassifier() >> 'classy'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            when:
            MavenArtifact mavenArtifact = parser.parseNotation(source: publishArtifact, extension: "ext", classifier: "classy")
    
            then:
            mavenArtifact.file == publishArtifact.file
            mavenArtifact.extension == "ext"
            mavenArtifact.classifier == "classy"
    
            and:
            mavenArtifact.buildDependencies.getDependencies(task) == dependencies
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifactSet.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'maven-publish'
     * }
     *
     * def publication = publishing.publications.create("name", MavenPublication)
     * def artifacts = publication.artifacts
     *
     * artifacts.matching({
     *     it.classifier == "classy"
     * }).all({
     *     it.extension = "ext"
     * })
     * </pre>
     *
     * @see DomainObjectSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultCompositeExcludeTest.groovy

        private static final IvyArtifactName[] ARTIFACTS = [artifactName("foo"), artifactName('bar'), artifactName('baz'), artifactName('foo', 'jar', 'jar', 'classy')]
        private static final Long SEED = Long.getLong("org.gradle.internal.test.excludes.seed", 58745094L)
        private static final int MAX_DEPTH = 3
        private static final int MAX_CACHED = 10_000
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. pkg/volume/util/storageclass_test.go

    			classes: []*storagev1.StorageClass{sc1, sc2},
    			expect:  nil,
    		},
    
    		{
    			name:    "one default storage class",
    			classes: []*storagev1.StorageClass{sc1, sc2, sc3},
    			expect:  sc3,
    		},
    
    		{
    			name:    "two default storage class with different creation timestamp",
    			classes: []*storagev1.StorageClass{sc3, sc4},
    			expect:  sc4,
    		},
    
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 14:18:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/CachedScalaCompileIntegrationTest.groovy

            !class2.exists()
        }
    
        def "zinc handles removal of stale output files after loading from cache"() {
            createJavaClass("Class1")
            def source2 = createJavaClass("Class2")
            def source3 = createJavaClass("Class3", "proto")
            def class1 = scalaClassFile('Class1.class')
            def class2 = scalaClassFile('Class2.class')
            def class3 = scalaClassFile('proto/Class3.class')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProviderTest.groovy

            0 * action._
        }
    
        def "maps class ids to original id when fetching test output for merged classes"() {
            def writer = Stub(Writer)
            def class1 = Stub(TestClassResult) {
                getId() >> 12
                getClassName() >> 'class-1'
            }
            def class2 = Stub(TestClassResult) {
                getId() >> 12
                getClassName() >> 'class-1'
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/FilteringClassLoaderSpecSerializerTest.groovy

    import spock.lang.Specification
    
    class FilteringClassLoaderSpecSerializerTest extends Specification {
        def serializer = new FilteringClassLoaderSpecSerializer()
        def outputStream = new ByteArrayOutputStream()
        def encoder = new KryoBackedEncoder(outputStream)
    
        def "can serialize and deserialize a spec"() {
            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top