Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for dylib (0.13 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParser.java

            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.candidate("Map with mandatory 'library' and optional 'project' and 'linkage' keys").example("[project: ':someProj', library: 'mylib', linkage: 'static']");
            }
    
            @SuppressWarnings("unused")
            protected NativeLibraryRequirement parseMap(
                @MapKey("library") String libraryName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/go.go

    				// allow #pragma dynimport _ _ "foo.so"
    				// to force a link of foo.so.
    				havedynamic = 1
    
    				if ctxt.HeadType == objabi.Hdarwin {
    					machoadddynlib(lib, ctxt.LinkMode)
    				} else {
    					dynlib = append(dynlib, lib)
    				}
    				continue
    			}
    
    			q := ""
    			if before, after, found := strings.Cut(remote, "#"); found {
    				remote, q = before, after
    			}
    			s := l.LookupOrCreateSym(local, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            result.projectPath == projectPath
            result.libraryName == libraryName
    
            where:
            projectPath | libraryName
            ':myPath'   | null
            ':myPath'   | 'myLib'
            ':myPath'   | null
            ':myPath'   | 'myLib'
        }
    
        def "serializes version constraint"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

    class ResolvableConfigurationsReportTaskIntegrationTest extends AbstractIntegrationSpec implements InspectsConfigurationReport {
        def setup() {
            settingsFile << """
                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':resolvableConfigurations'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

            }
    
            return sequenceOf(directory)
        }
    
        private
        fun aJar(sourceFiles: Sequence<Path>): Sequence<Path> {
            val outputPath = projectDir.resolve("mylib.jar")
            Files.newOutputStream(outputPath).use { outputStream ->
                JarOutputStream(outputStream).use { jarStream ->
                    sourceFiles.forEach { dir ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            project.group = 'my.group'
            project.library.baseName = 'mylib'
            project.evaluate()
    
            then:
            def publishing = project.publishing
            publishing.publications.size() == 3
    
            def main = publishing.publications.main
            main.groupId == 'my.group'
            main.artifactId == 'mylib'
            main.version == '1.2'
            main.artifacts.size() == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    The typical example is that using a single dependency declaration `project(":myLib")`, we would either choose the `arm64` or `i386` version of `myLib` depending on the architecture.
    
    To do this, we will add attributes to both the consumer and the producer.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

    <application xmlns="http://java.sun.com/xml/ns/javaee" ${xsi.join(" ")} version="6">
      <application-name>customear</application-name>
      <display-name>displayname</display-name>
      <library-directory>mylib-$metaInfFolder</library-directory>
    </application>
    """)
    
            file("$metaInfFolder/application.xml").createFile().write(applicationXml)
            buildFile << """
    apply plugin: 'ear'
    ear {
        $appConfig
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.go

    		if !ldr.AttrReachable(s) || ldr.SymType(s) != sym.SDYNIMPORT {
    			continue
    		}
    		dynlib := ldr.SymDynimplib(s)
    		for d = dr; d != nil; d = d.next {
    			if d.name == dynlib {
    				m = new(Imp)
    				break
    			}
    		}
    
    		if d == nil {
    			d = new(Dll)
    			d.name = dynlib
    			d.next = dr
    			dr = d
    			m = new(Imp)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    
    [[sec:dependencies_within_the_same_project]]
    === Dependencies within the same project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top