Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 4,346 for module$ (0.23 sec)

  1. src/cmd/go/testdata/script/mod_invalid_path_plus.txt

    # The '+' character should be disallowed in module paths, but allowed in package
    # paths within valid modules.
    
    # 'go list' accepts package paths with pluses.
    cp go.mod.orig go.mod
    go get example.net/cmd
    go list example.net/cmd/x++
    
    # 'go list -m' rejects module paths with pluses.
    ! go list -versions -m 'example.net/bad++'
    stderr '^go: malformed module path "example.net/bad\+\+": invalid char ''\+''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 821 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/mod.go

    package gover
    
    import (
    	"sort"
    	"strings"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    // IsToolchain reports whether the module path corresponds to the
    // virtual, non-downloadable module tracking go or toolchain directives in the go.mod file.
    //
    // Note that IsToolchain only matches "go" and "toolchain", not the
    // real, downloadable module "golang.org/toolchain" containing toolchain files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/precompiled-script-plugin-utils/src/main/resources/checkstyle.xml

    <!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="UnusedImports" />
            <module name="AvoidStarImport" />
            <module name="ConstantName" />
            <module name="NeedBraces" />
            <module name="RightCurly" />
            <module name="ModifierOrder">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 555 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class LazyDownloadsIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def module = mavenHttpRepo.module("test", "test", "1.0").publish()
        def module2 = mavenHttpRepo.module("test", "test2", "1.0").publish()
    
        def setup() {
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_extra.txt

    # missing packages when the newly-added module matches a wildcard.
    
    cp go.mod.orig go.mod
    
    go get -u example.net/a@v0.1.0 example.net/b/...@v0.1.0
    go list -m all
    stdout '^example.net/a v0.1.0 '
    stdout '^example.net/b v0.1.0 '
    stdout '^example.net/c '  # BUG, but a minor and rare one
    
    
    -- go.mod --
    module example
    
    go 1.15
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/b v0.1.0 => ./b1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.md5.expectPut()
            module.pom.expectPut()
            module.pom.sha1.expectPut()
            module.pom.sha256.expectPutBroken()
            module.pom.sha512.expectPutBroken()
            module.pom.md5.expectPut()
            module.moduleMetadata.expectPut()
            module.moduleMetadata.sha1.expectPut()
            module.moduleMetadata.sha256.expectPutBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                        module('org:testB:1.0')
                    }
                }
            } else {
                failure.assertHasCause("""Module 'org:testA' has been rejected:
       Cannot select module with conflict on capability 'org.test:cap:1.0' also provided by [org:testB:1.0(runtime)]""")
                failure.assertHasCause("""Module 'org:testB' has been rejected:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

            _ * module.classpath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.implementationClasspath >> DefaultClassPath.of(new File("$name-runtime"))
            _ * module.allRequiredModules >> (([module] + (requiredModules as List)) as LinkedHashSet)
            _ * module.allRequiredModulesClasspath >> module.allRequiredModules.collect { it.classpath }.inject(ClassPath.EMPTY) { r, i -> r + i }
            return module
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/execution/JavaModuleExecutionIntegrationTest.groovy

            consumingModuleClass('moda.ModaClass')
    
            when:
            succeeds ':run'
    
            then:
            outputContains("Module Name: consumer")
            outputContains("Module Version: 1.0-beta2")
        }
    
        def "runs a module accessing resources using the module path with the application plugin"() {
            given:
            buildFile.text = buildFile.text.replace('java-library', 'application')
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top