Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for libName (0.19 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParserTest.groovy

            when:
            def input = [library: 'libName']
            def dependency = parser.parseNotation(input)
    
            then:
            dependency.projectPath == null
            dependency.libraryName == "libName"
            dependency.linkage == null
        }
    
        def "parses map notation for library in other project"() {
            when:
            def input = [project: 'other', library: 'libName']
            def dependency = parser.parseNotation(input)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/ProjectLibraryBinaryLocatorTest.groovy

            def requirement = new LibraryIdentifier("other", "libName")
    
            and:
            projectLocator.resolveProjectModel("other") >> projectModel
            findLibraryInProject()
    
            then:
            locator.getBinaries(requirement) == convertedBinaries
        }
    
        def "fails for unknown project"() {
            when:
            def requirement = new LibraryIdentifier("unknown", "libName")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                    binaries.withType(StaticLibraryBinary) {
                        def libName = targetPlatform.operatingSystem.windows ? 'util.lib' : 'libutil.a'
                        staticLibraryFile = file("3rd-party-lib/util/build/libs/util/static/${buildType.name}/${libName}")
                    }
                    binaries.withType(SharedLibraryBinary) {
                        def os = targetPlatform.operatingSystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build_test.go

    				}
    				cfg.BuildContext.GOPATH = tmpGopath
    				os.Chdir(root)
    			}
    			computed, err := libname(data.args, data.pkgs)
    			if err != nil {
    				if !data.expectErr {
    					t.Errorf("libname returned an error %q, expected a name", err.Error())
    				}
    			} else if data.expectErr {
    				t.Errorf("libname returned %q, expected an error", computed)
    			} else {
    				expected := prefix + data.expected + suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

                    }
    
                    return detachedRuntimeClasspath(
                        GROOVY_LIBS.stream()
                            .map(libName -> project.getDependencies().create(groovyModuleDependency(libName, groovyVersion)))
                            .toArray(Dependency[]::new)
                    );
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

            binary.tasks.link == linkTask
        }
    
        private def getSharedLibrary() {
            def library = BaseComponentFixtures.createNode(NativeLibrarySpec, DefaultNativeLibrarySpec, new DefaultComponentSpecIdentifier("path", "libName"));
            TestNativeBinariesFactory.create(SharedLibraryBinarySpec, DefaultSharedLibraryBinarySpec, "test", library, namingScheme, resolver,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        final library = BaseComponentFixtures.createNode(NativeLibrarySpec, DefaultNativeLibrarySpec, new DefaultComponentSpecIdentifier("path", "libName"))
        def namingScheme = DefaultBinaryNamingScheme.component("main").withBinaryType("staticLibrary")
        def toolChain = Stub(NativeToolChainInternal)
        def platform = Stub(NativePlatform)
        def buildType = Stub(BuildType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinaryTest.groovy

            expect:
            binary.toString() == "prebuilt static library 'lib:name'"
            binary.displayName == "prebuilt static library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt static library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt static library 'lib:name'"
        }
    
        def "can set static library file"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

            expect:
            binary.toString() == "prebuilt shared library 'lib:name'"
            binary.displayName == "prebuilt shared library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt shared library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt shared library 'lib:name'"
        }
    
        def "uses library file when link file not set"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. licenses/sigs.k8s.io/yaml/goyaml.v3/LICENSE

    This project is covered by two different licenses: MIT and Apache.
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Copyright (c) 2006-2010 Kirill Simonov
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top