Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for mylibs (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                configurations {
                    dependencyScope("myLibs")
    
                    resolvable("resolveMe") {
                        extendsFrom(configurations.getByName("myLibs"))
                    }
                }
    
                dependencies {
                    add("myLibs", module(mapOf("group" to "com.squareup.okhttp3", "name" to "okhttp", "version" to "4.4.0", "configuration" to "absent")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                    implementation libs.com.companyLibs.c
    
                    implementation libs.bundles.com.company.libs.bundle
                    implementation libs.bundles.com.companylibs.bundle
                }
    
                tasks.register('checkVersions') {
                    assert libs.versions.version.libs.v1.get() == '1.0'
                    assert libs.versions.versionLibs.v2.get() == '2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    func (x *Nat) Equal(y *Nat) choice {
    	// Eliminate bounds checks in the loop.
    	size := len(x.limbs)
    	xLimbs := x.limbs[:size]
    	yLimbs := y.limbs[:size]
    
    	equal := yes
    	for i := 0; i < size; i++ {
    		equal &= ctEq(xLimbs[i], yLimbs[i])
    	}
    	return equal
    }
    
    // IsZero returns 1 if x == 0, and 0 otherwise.
    func (x *Nat) IsZero() choice {
    	// Eliminate bounds checks in the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    versionCatalogs {
                        register("libs") {
                            version("myLib") {
                                strictly("[1.0,1.1)")
                            }
                            library("myLib", "org.gradle.test", "lib-core").versionRef("myLib")
                            library("myLib-ext", "org.gradle.test", "lib-ext").versionRef("myLib")
                            bundle("myBundle", listOf("myLib"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K 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. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

    apply plugin: 'cpp'
    model {
        repositories {
            libs(PrebuiltLibraries) {
                hello {
                    headers.srcDir "libs/src/hello/headers"
                    binaries.withType(StaticLibraryBinary) {
                        def libName = targetPlatform.operatingSystem.windows ? 'hello.lib' : 'libhello.a'
                        staticLibraryFile = file("libs/build/libs/hello/static/english/\${libName}")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

               ${mavenCentralRepository()}
    
               dependencies {
                   runtimeOnly 'commons-io:commons-io:1.4'
                   runtimeOnly files('libs/myFoo.jar')
               }
    
               eclipse.pathVariables MY_LIBS: file('libs')
            """
    
            //when
            executer.withTasks("eclipse").run()
    
            //then
            def classpath = getClasspath()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. 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)
Back to top