Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for someLib (0.39 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

        C source 'someLib:c'
            srcDir: src/someLib/c
        C++ source 'someLib:cpp'
            srcDir: src/someLib/cpp
    
    Binaries
        Shared library 'someLib:amd64:free:sharedLibrary'
            build using task: :someLibAmd64FreeSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'free'
            target platform: platform 'amd64'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in task failure error message with #display"() {
            repo.file("settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeLibrarySpecTest.groovy

        final library = BaseComponentFixtures.create(NativeLibrarySpec, DefaultNativeLibrarySpec, new DefaultComponentSpecIdentifier("project-path", "someLib"))
    
        def "has useful string representation"() {
            expect:
            library.toString() == "native library 'someLib'"
            library.displayName == "native library 'someLib'"
        }
    
        def "can use shared variant as requirement"() {
            when:
            def requirement = library.shared
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        def "includes build identifier in dependency report with #display"() {
            dependency "org.test:${dependencyName}:1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            when:
            def somelib = file("lib/somelib.jar")
            somelib.parentFile.mkdir()
            jarWithClasses(somelib, Thing: 'class Thing {}')
    
            file("src/main/java/Foo.java") << "class Foo extends Thing{}"
            buildFile << """
                dependencies {
                    implementation files("lib/somelib.jar")
                }
            """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            succeeds()
    
            where:
            settings                     | rootProjectName | display
            ""                           | "buildSrc"      | "default root project name"
            "rootProject.name='someLib'" | "someLib"       | "configured root project name"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

            where:
            settings                     | rootProjectName | display
            ""                           | "buildSrc"      | "default root project name"
            "rootProject.name='someLib'" | "someLib"       | "configured root project name"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraryTest.groovy

        def "has useful display name"() {
            def lib = new DefaultPrebuiltLibrary("someLib", TestUtil.objectFactory(), TestUtil.domainObjectCollectionFactory())
    
            expect:
            lib.toString() == "prebuilt library 'someLib'"
            lib.headers.toString() == "headers for prebuilt library 'someLib'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
            file("foo/build.gradle") << """
                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
            // Load the StaticData class in the different sub-sub-projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

        }
    
        def "filters duplicate project dependency specs"() {
            when:
            container.library('someLib')
            container.project('otherProject').library('someLib')
            container.project('otherProject')
    
            container.library('someLib')
            container.library('someLib').project('otherProject')
            container.project('otherProject')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top