Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,346 for module$ (0.09 sec)

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

    	_ "b"
    	_ "c"
    )
    
    func main() {}
    -- a/go.mod --
    module a
    go 1.13
    require x v0.1.0
    -- a/a.go --
    package a
    -- b/go.mod --
    module b
    go 1.13
    require x v0.2.0
    -- b/b.go --
    package b
    -- c/go.mod --
    module c
    go 1.13
    -- c/c.go --
    package c
    import _ "i"
    -- x1/go.mod --
    module x
    go1.13
    require i v0.1.0
    -- x2/go.mod --
    module x
    go1.13
    -- i/go.mod --
    -- i/i.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 20:13:25 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_go_version_missing.txt

    # go.mod file. Otherwise, we don't actually know whether the module was written
    # against Go 1.11 or 1.16. We would have to update the go.mod file to clarify,
    # and as of Go 1.16 we don't update the go.mod file by default.
    #
    # If we set -mod=vendor explicitly, we shouldn't apply the Go 1.14
    # consistency check, because — again — we don't know whether we're in a 1.11
    # module or a bad-script-edited 1.16 module.
    
    ! go list -mod=vendor all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

            module1.configuration("sources")
            module1.configuration("javadoc")
            // Add an artifact to prevent the default artifact being added with conf='*'
            module1.artifact([conf: 'default'])
            module1.publish()
    
            and:
            fixture.withComponentVersion("some.group", "some-artifact", "1.1").prepare()
    
            when:
            module1.ivy.expectGet()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/why.go

    The output is a sequence of stanzas, one for each package or module
    name on the command line, separated by blank lines. Each stanza begins
    with a comment line "# package" or "# module" giving the target
    package or module. Subsequent lines give a path through the import
    graph, one package per line. If the package or module is not
    referenced from the main module, the stanza will display a single
    parenthesized note indicating that fact.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/config/checkstyle/checkstyle.xml

            <module name="ConstantName"/>
            <module name="LocalFinalVariableName"/>
            <module name="LocalVariableName"/>
            <module name="MemberName"/>
            <module name="MethodName"/>
            <module name="MethodTypeParameterName"/>
            <module name="PackageName">
                <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
            </module>
            <module name="ParameterName"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/config/checkstyle/checkstyle.xml

            <module name="ConstantName"/>
            <module name="LocalFinalVariableName"/>
            <module name="LocalVariableName"/>
            <module name="MemberName"/>
            <module name="MethodName"/>
            <module name="MethodTypeParameterName"/>
            <module name="PackageName">
                <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
            </module>
            <module name="ParameterName"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/download.go

    	"cmd/go/internal/modload"
    	"cmd/go/internal/toolchain"
    
    	"golang.org/x/mod/module"
    )
    
    var cmdDownload = &base.Command{
    	UsageLine: "go mod download [-x] [-json] [-reuse=old.json] [modules]",
    	Short:     "download modules to local cache",
    	Long: `
    Download downloads the named modules, which can be module patterns selecting
    dependencies of the main module or module queries of the form path@version.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

            def module = createModule()
            module.publish()
        }
    
        private IvyHttpModule publishModuleWithoutMetadata() {
            IvyHttpModule module = createModule()
            module.withNoMetaData()
            module.publish()
        }
    
        private IvyHttpModule createModule() {
            httpRepo.module(fixture.id.group, fixture.id.module, fixture.id.version)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    # that provide packages (or test dependencies of packages) imported by the
    # main module. However, in Go 1.16 it selects a higher version of a
    # transitive module dependency that is not otherwise relevant to the main module.
    # As a result, Go 1.16 needs an additional checksum for the go.mod file of
    # that irrelevant dependency.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- incompatible v1.0.0
    #         |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            when:
            expectAlignment {
                module('xml') alignsTo('1.0') byVirtualPlatform()
                module('core') alignsTo('1.0')
                module('json') tries('1.1')
                module('foo') group('org2') alignsTo('1.0')
                module('bar') group('org3') alignsTo('1.0')
                module('a') group('org4') tries('1.0') alignsTo('1.1')
                module('b') group('org4') alignsTo('1.1')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
Back to top