Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 632 for lib1 (0.04 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerExportIntegrationTest.groovy

            given:
            createDirs("lib1", "lib2", "app")
            settingsFile << "include 'lib1', 'lib2', 'app'"
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                }
    
                afterEvaluate {
                    generateSwiftPmManifest.package.get().products.removeAll { p -> p.name == 'app' }
                }
    
                project(':lib1') { apply plugin: 'swift-library' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                    def dep = ivyRepo.module("thing", "lib2", "4.0").publish()
                    ivyRepo.module("thing", "lib1", "2.5").dependsOn(dep).publish()
                }
            }
        }
    
        class MavenLocalRepo extends MavenRepoSetup {
            @Override
            String getMetadataLocation() {
                return 'maven_home/.m2/repository/thing/lib1/2.1/lib1-2.1.pom'.replace('/', File.separator)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            sharedLibrary("lib1/build/lib/main/debug/Hello").assertExists()
            sharedLibrary("lib2/build/lib/main/debug/Log").assertExists()
        }
    
        def "doesn't have implicit _main symbols declared in the object file of single file Swift library"() {
            given:
            def lib = new SwiftSingleFileLib()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            output.contains("result = [lib2-5.6.jar.txt, lib1-1.2.jar.txt]")
            output.contains("result = [lib2-5.6.jar.txt, lib1-1.3.jar.txt]")
            output.count('Transforming without dependencies lib2-5.6.jar to lib2-5.6.jar.txt') == 1
            output.count('Transforming without dependencies lib1-1.2.jar to lib1-1.2.jar.txt') == 1
            output.count('Transforming without dependencies lib1-1.3.jar to lib1-1.3.jar.txt') == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            fixture.assertStateLoaded()
        }
    
        def "can fetch IdeaProject model for empty projects"() {
            settingsFile << """
                rootProject.name = 'root'
                include(":lib1")
                include(":lib1:lib11")
            """
    
            when: "fetching without Isolated Projects"
            def originalIdeaModel = fetchModel(IdeaProject)
    
            then:
            fixture.assertNoConfigurationCache()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            sharedLibrary("lib1/build/lib/main/debug/lib1").assertExists()
            sharedLibrary("lib2/build/lib/main/debug/lib2").assertExists()
            executable("build/exe/main/debug/app").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarProjectIntegrationTest.groovy

                  ear.libDirName = 'APP-INF/lib'
               }
    
            """
    
            when:
            run 'eclipse'
    
            then:
            def component = wtpComponent
            component.lib('lib1-api-1.0.jar').assertDeployedAt('/APP-INF/lib')
            component.lib('lib1-impl-1.0.jar').assertDeployedAt('/APP-INF/lib')
            component.lib('lib2-impl-2.0.jar').assertDeployedAt('/')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                .assertOutputContains("Creating multiplier")
                .assertOutputContains("Transforming lib1.jar to lib1.jar.green")
    
            result.groupedOutput.transform("GreenMultiplier", "lib2.jar (project :lib)")
                .assertOutputContains("Creating multiplier")
                .assertOutputContains("Transforming lib2.jar to lib2.jar.green")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetCompileDependenciesIntegrationTest.groovy

                sources {
                    cpp {
                        lib library: 'lib1', linkage: 'api'
                    }
                    otherCpp(CppSourceSet) {
                        lib library: 'lib2', linkage: 'api'
                    }
                }
            }
        }
    }
    """
    
            when:
            succeeds "mainExecutable"
    
            then:
            executable("build/exe/main/main").exec().out == "12\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. 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)
Back to top