Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,820 for libA (0.07 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            os.getLinkLibraryName("a.lib") == "a.lib"
        }
    
        def "windows transforms static library names"() {
            def os = new OperatingSystem.Windows()
    
            expect:
            os.staticLibrarySuffix == ".lib"
            os.getStaticLibraryName("a.lib") == "a.lib"
            os.getStaticLibraryName("a.LIB") == "a.LIB"
            os.getStaticLibraryName("a") == "a.lib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

            lib.pom.expectGet()
            lib.artifact.expectGet()
            lib2.pom.expectGet()
            lib2.artifact.expectGet()
    
            then:
            succeeds ':checkDeps'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15350")
        def "provides String.invoke method supporting provider"() {
            def lib = mavenHttpRepo.module('org.gradle.test', 'lib', '1.1').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                }
    
                plugins {
                    id("org.gradle.experimental.jvm-ecosystem")
                }
    
                rootProject.name = "root-project"
    
                include(":libA")
                include(":libB")
                include(":libC")
    
            """.stripIndent()
    
            if (config.subProjects != 0) {
                includedProjects += """${(0..config.subProjects - 1).collect { "include(\"project$it\")" }.join("\n")}"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            def libA = tmpDir.createFile("lib/a.jar")
            def libB = tmpDir.createFile("lib/b.jar")
    
            expect:
            def dist = factory.getDistribution(tmpDir.testDirectory)
            dist.getToolingImplementationClasspath(progressLoggerFactory, buildProgressListener, connectionParameters, cancellationToken).asFiles as Set == [libA, libB] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            given:
            mavenRepo.module("org", "libA", "1.0").dependsOn("org", "libB", "1.0").dependsOn("org", "libC", "1.0").publish()
            mavenRepo.module("org", "libB", "1.0").publish()
            mavenRepo.module("org", "libC", "1.0").publish()
    
            file("build.gradle") << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    //
    // Use import paths for other cases, changing '/' to '-':
    //
    //	somelib --> libsubdir-somelib.so
    //	./ or ../ --> libsubdir-somelib.so
    //	gopkg.in/tomb.v2 -> libgopkg.in-tomb.v2.so
    //	a/... b/... ---> liba/c,b/d.so - all matching import paths
    //
    // Name parts are joined with ','.
    func libname(args []string, pkgs []*load.Package) (string, error) {
    	var libname string
    	appendName := func(arg string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

    [versions]
    commons-lib = "1.0"
    
    [libraries]
    my-lib = {group = "org.gradle.test", name="lib", version.ref="commons-lib"}
    my-lib2 = {group = "org.gradle.test", name="lib2", version.ref="commons-lib"}
    
    [bundles]
    my-bundle = ["my-lib"]
    other-bundle = ["my-lib", "my-lib2"]
    
    """
            def lib = mavenHttpRepo.module("org.gradle.test", "lib", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("components 1: [project :lib, project :lib, lib3.jar, org.test.foo:lib4:1.0]") == 2
            output.count("files 2: [lib1.jar.hash, lib2.jar.hash, lib3.jar.hash, lib4-1.0.jar.hash]") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
            spec.compileClasspath = [file1, file2]
    
            expect:
            builder.build() == defaultOptionsWithoutClasspath + ["-classpath", "$file1$File.pathSeparator$file2"]
        }
    
        def "generates -processorpath option"() {
            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            def lib2 = mavenHttpRepo.module("org.gradle.test", "lib2", "1.0").publish()
            buildFile << """
                apply plugin: 'java-library'
    
                dependencies {
                    implementation(libs.bundles.my.great.bundle)
                }
            """
    
            when:
            lib.pom.expectGet()
            lib.artifact.expectGet()
            lib2.pom.expectGet()
            lib2.artifact.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top