Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 608 for mylibs (0.12 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            """
    
            when:
            run ':outgoingVariants'
    
            then:
            def jarPath = file('build/libs/myLib-1.0.jar').getRelativePathFromBase()
            def javadocJarPath = file('build/libs/myLib-1.0-javadoc.jar').getRelativePathFromBase()
            def sourcesJarPath = file('build/libs/myLib-1.0-sources.jar').getRelativePathFromBase()
            def builtMainClassesPath = file('build/classes/java/main').getRelativePathFromBase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            shared library file: build/libs/someLib/shared/libsomeLib.dylib
        Static library 'someLib:staticLibrary'
            build using task: :someLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            static library file: build/libs/someLib/static/libsomeLib.a
            source sets:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/groovy/build.gradle

     * limitations under the License.
     */
    
    // tag::platform_uses_catalog[]
    plugins {
        id 'java-platform'
    }
    
    dependencies {
        constraints {
            api(libs.mylib)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 782 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/kotlin/settings.gradle.kts

     * limitations under the License.
     */
    rootProject.name = "platform"
    
    dependencyResolutionManagement {
        versionCatalogs {
            create("libs") {
                library("mylib", "org:mylib:1.0")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 791 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    ## Usage in a Maven repository
    
    When present in a Maven module, the file must have the extension `module`. For example, in version 1.2 of 'mylib', the file should be called `mylib-1.2.module`.
    
    Gradle ignores the contents of the Maven POM when the module metadata file is present.
    
    ## Contents
    
    The file must be encoded using UTF-8.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

                .replaceAll("platform '[\\w+\\-]+'","platform 'current'")
                .replaceAll("(build/libs/.+/shared/(\\w+))\\.so") { "${it[1]}.dylib" }
                .replaceAll("((build/libs/.+/shared/)(\\w+))\\.dll") { "${it[2]}lib${it[3]}.dylib" }
                .replaceAll("((build/libs/.+/static/)(\\w+))\\.lib") { "${it[2]}lib${it[3]}.a" }
                .replaceAll("(build/exe/.+/\\w+)\\.exe") { it[1] }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/groovy/settings.gradle

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    rootProject.name = 'platform'
    
    dependencyResolutionManagement {
        versionCatalogs {
            libs {
                library('mylib', 'org:mylib:1.0')
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    // tag::platform_uses_catalog[]
    plugins {
        `java-platform`
    }
    
    dependencies {
        constraints {
            api(libs.mylib)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 779 bytes
    - Viewed (0)
  9. src/syscall/zsyscall_darwin_arm64.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_amd64.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