Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for someLibs (0.25 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

        }
    
        def "filters duplicate project dependency specs"() {
            when:
            container.library('someLib')
            container.project('otherProject').library('someLib')
            container.project('otherProject')
    
            container.library('someLib')
            container.library('someLib').project('otherProject')
            container.project('otherProject')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build_test.go

    			pkgs:     []*load.Package{pkgImportPath("gopkg.in/somelib")},
    			expected: "gopkg.in-somelib",
    		},
    		{
    			args:     []string{"./..."},
    			pkgs:     []*load.Package{pkgImportPath("somelib")},
    			expected: "somelib",
    			rootedAt: "somelib",
    		},
    		{
    			args:     []string{"../somelib", "../somelib"},
    			pkgs:     []*load.Package{pkgImportPath("somelib")},
    			expected: "somelib",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

        def setup() {
            configurationCache = newConfigurationCacheFixture()
        }
    
        def "build on Java project with no source"() {
            given:
            settingsFile << """
                rootProject.name = 'somelib'
            """
            buildFile << """
                plugins { id 'java' }
            """
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildC"  | "buildC"       | "default root project name"
            "rootProject.name='someLib'" | "buildC"  | "someLib"      | "configured root project name"
        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in task failure error message with #display"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                spec.delegate = validation
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec()
            }
    
            void onPlugins(List<String> someIds, @DelegatesTo(value = PluginValidation, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
                someIds.each {
                    onPlugin(it, spec)
                }
            }
    
            protected void performValidation(List<String> extraParameters = []) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            "rootProject.name='someLib'" | "someLib"      | "configured root project name"
        }
    
        // Also covered by tests in configuration cache project
        @Requires(IntegTestPreconditions.NotConfigCached)
        def "generates build lifecycle operations for multiple included builds"() {
            given:
            def buildC = multiProjectBuild("buildC", ["someLib"]) {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

        void "utility project's library and variable classpath entries contain necessary dependency attribute"() {
            //given
            file('libs/myFoo.jar').touch()
            createDirs("someLib")
            file('settings.gradle') << "include 'someLib'"
    
            file("build.gradle") <<
            """apply plugin: 'java'
               apply plugin: 'eclipse-wtp'
    
               ${mavenCentralRepository()}
    
               dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.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("one", "two")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            taskOps.last().parentId == runTasksOps[1].id
    
            where:
            settings                     | display
            ""                           | "default root project name"
            "rootProject.name='someLib'" | "configured root project name"
        }
    
        def "does not resolve configurations when configuring buildSrc build"() {
            when:
            succeeds()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top