Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for someLib (0.37 sec)

  1. src/cmd/go/internal/work/build.go

    //
    //	foo/... --> libfoo.so
    //	(A relative path like "./..."  expands the "." first)
    //
    // Use import paths for other cases, changing '/' to '-':
    //
    //	somelib --> libsubdir-somelib.so
    //	./ or ../ --> libsubdir-somelib.so
    //	gopkg.in/tomb.v2 -> libgopkg.in-tomb.v2.so
    //	a/... b/... ---> liba/c,b/d.so - all matching import paths
    //
    // Name parts are joined with ','.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *   implementation configuration: 'someConf', group: 'org.someOrg', name: 'someModule', version: '1.0'
     *
     *   //configuring dependency on 'someLib' module
     *   implementation(group: 'org.myorg', name: 'someLib', version:'1.0') {
     *     //explicitly adding the dependency artifact:
     *     artifact {
     *       //useful when some artifact properties unconventional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void classpathContainsConflictResolvedDependencies() {
            def someLib1Jar = mavenRepo.module('someGroup', 'someLib', '1.0').publish().artifactFile
            def someLib2Jar = mavenRepo.module('someGroup', 'someLib', '2.0').publish().artifactFile
    
            def settingsFile = file("settings.gradle")
            createDirs("a", "b")
            settingsFile << """ include 'a', 'b'"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    A project name with kebab case (`some-lib`) or snake case (`some_lib`) will be converted to camel case in accessors: `projects.someLib`.
    
    === Local forks of module dependencies
    
    A module dependency can be substituted by a dependency to a local fork of the sources of that module, if the module itself is built with Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    Adding a dependency using the `libs.someLib` notation works exactly like if you had hardcoded the group, artifact and version directly in the build script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/src/someWeb.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/src/someWeb.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  8. tests/postgres_test.go

    	}
    
    	type Thing struct {
    		gorm.Model
    		SomeID  string
    		OtherID string
    		Data    string
    	}
    
    	DB.Migrator().DropTable(&Thing{})
    	DB.Migrator().CreateTable(&Thing{})
    	if err := DB.Exec("ALTER TABLE things ADD CONSTRAINT some_id_other_id_unique UNIQUE (some_id, other_id)").Error; err != nil {
    		t.Error(err)
    	}
    
    	thing := Thing{
    		SomeID:  "1234",
    		OtherID: "1234",
    		Data:    "something",
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Oct 08 09:16:32 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

            project.pluginManager.apply(BasePlugin)
            project.version = '1.0'
    
            then:
            def someZip = project.tasks.create('someZip', Zip)
            someZip.destinationDirectory.get().asFile == project.distsDirectory.get().asFile
            someZip.archiveVersion.get() == project.version
            someZip.archiveBaseName.get() == project.archivesBaseName
    
            and:
            def someTar = project.tasks.create('someTar', Tar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DirectoryOutputArtifactIntegrationTest.groovy

        def "can attach a directory as output of a configuration"() {
            given:
            file('someDir/a.txt') << 'some text'
            buildFile << '''
    
            configurations {
                compile
                _classpath
            }
    
            artifacts {
                _classpath file("someDir")
            }
    
            dependencies {
                compile project(path: ':', configuration: '_classpath')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top