Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,011 for lib3 (0.04 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

        def "flattens"() {
            expect:
            flattenElements(1, [2, 3]) == [1, 2, 3]
        }
    
        def "convert to path notation"() {
            expect:
            asPath(["lib1.jar", "lib2.jar", new File("lib3.jar")]) == "lib1.jar${sep}lib2.jar${sep}lib3.jar"
        }
    
        def "adds to collection"() {
            def list = [0]
            when:
            addToCollection(addToCollection(list, [1, 2]), [2, 3])
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/idea/model/customProject.xml

      </component>
      <component name="libraryTable">
      <library name="scala-compiler-2.10.0">
        <CLASSES>
          <root url="jar://$USER_HOME$/lib1.jar!/" />
          <root url="jar://$USER_HOME$/lib2.jar!/" />
          <root url="jar://$USER_HOME$/lib3.jar!/" />
        </CLASSES>
        <JAVADOC />
        <SOURCES />
      </library>
    </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build_test.go

    		},
    		{
    			args:     []string{"../lib1", "../lib2"},
    			pkgs:     []*load.Package{pkgImportPath("gopkg.in/lib1"), pkgImportPath("gopkg.in/lib2")},
    			expected: "gopkg.in-lib1,gopkg.in-lib2",
    		},
    		{
    			args: []string{"./..."},
    			pkgs: []*load.Package{
    				pkgImportPath("gopkg.in/dir/lib1"),
    				pkgImportPath("gopkg.in/lib2"),
    				pkgImportPath("gopkg.in/lib3"),
    			},
    			expected: "gopkg.in",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryDependenciesIntegrationTest.groovy

                class Lib1 {
                }
            """
            file("lib2/src/main/swift/Lib2.swift") << """
                class Lib2 {
                }
            """
    
            when:
            succeeds assembleDevBinaryTask
    
            then:
            result.assertTasksExecuted([":lib1:compileDebugSwift", ":lib1:linkDebug", ":lib2:compileDebugSwift", ":lib2:linkDebug"], assembleDevBinaryTasks, assembleDevBinaryTask)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

            given:
            createDirs("lib1", "lib2")
            settingsFile << "include 'lib1', 'lib2'"
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'cpp-application'
                }
                subprojects {
                    apply plugin: 'cpp-library'
                }
                dependencies {
                    implementation project(':lib1')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. 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)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/annotationWithEnumFromDuplicatedLibrary.kt

    // ALLOW_KOTLIN_PACKAGE
    // MODULE: lib1
    // FILE: anno.kt
    package kotlin.annotation
    
    public enum class AnnotationTarget {
        CLASS;
    }
    
    // MODULE: dep(lib1)
    // FILE: annotation.kt
    package my.pack
    
    import kotlin.annotation.AnnotationTarget
    
    @Target(AnnotationTarget.CLASS)
    annotation class Deprecated
    
    // MODULE: lib2
    // FILE: anno.kt
    package kotlin.annotation
    
    public enum class AnnotationTarget {
        CLASS;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 521 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

            when:
            binary.lib(lib1)
            def sourceSet = Stub(DependentSourceSet) {
                getLibs() >> [sourceLib]
            }
            binary.inputs.add sourceSet
            binary.lib(lib2)
    
            and:
            1 * resolver.resolve({ NativeBinaryResolveResult result ->
                result.allResolutions*.input == [lib1, lib2, sourceLib]
            }) >> { NativeBinaryResolveResult result ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top