Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for someModule (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *                         if (selection.candidate.module == 'someModule' && selection.candidate.version == '1.1') {
     *                             selection.reject("bad version '1.1' for 'someModule'")
     *                         }
     *                     }
     *                     all { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customModule.xml

                    <SOURCES/>
                    <jarDirectory url="file://$MODULE_DIR$/ant/lib" recursive="false"/>
                </library>
            </orderEntry>
            <orderEntry type="module" module-name="someModule" exported="" />
        </component>
        <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultExcludeRuleConverterTest.groovy

                }
            }
        }
    
        @Issue("gradle/gradle#951")
        def "can create exclude rule for configuration name '#configurationName'"() {
            given:
            def group = 'someOrg'
            def module = 'someModule'
    
            when:
            Exclude exclude = new DefaultExcludeRuleConverter(moduleIdentifierFactory).convertExcludeRule(new DefaultExcludeRule(group, module))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleTest.groovy

                        [new JarDirectory(path('file://$MODULE_DIR$/ant/lib'), false)] as Set, "RUNTIME"),
                new ModuleDependency('someModule', null)]
    
        Module module = new Module(xmlTransformer, pathFactory)
    
        def loadFromReader() {
            when:
            module.load(customModuleReader)
    
            then:
            module.jdkName == "1.6"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download.txt

    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    
    # download of an invalid path should report the error
    [short] skip
    ! go mod download this.domain.is.invalid/somemodule@v1.0.0
    stderr 'this.domain.is.invalid'
    ! go mod download -json this.domain.is.invalid/somemodule@v1.0.0
    stdout '"Error": ".*this.domain.is.invalid.*"'
    
    # download -json with version should print JSON
    go mod download -json 'rsc.io/quote@<=v1.5.0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
Back to top