Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for mylib (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    In case you want to reference a version declared in the `[versions]` section, you should use the `version.ref` property:
    
    ```
    [versions]
    some = "1.4"
    
    [libraries]
    my-lib = { group = "com.mycompany", name="mylib", version.ref="some" }
    ```
    
    --
    The TOML file format is very lenient and lets you write "dotted" properties as shortcuts to full object declarations.
    For example, this:
    
    ```
    a.b.c="d"
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            settingsFile """
                dependencyResolutionManagement {
                    defaultLibrariesExtensionName = 'myLibs'
                }
            """
            buildFile """
                apply plugin: 'java-library'
    
                dependencies {
                    implementation myLibs.my.lib
                }
            """
    
            when:
            lib.pom.expectGet()
            lib.artifact.expectGet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(fd int) (nfd int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_dup_trampoline), uintptr(fd), 0, 0)
    	nfd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_dup_trampoline()
    
    //go:cgo_import_dynamic libc_dup dup "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    //go:cgo_import_dynamic libc_exchangedata exchangedata "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Exit(code int) {
    	syscall_syscall(libc_exit_trampoline_addr, uintptr(code), 0, 0)
    	return
    }
    
    var libc_exit_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_exit exit "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
Back to top