Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,190 for moduleB (0.07 sec)

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

    ! go build -mod=vendor .
    stderr '^go: golang.org/x/text in vendor'${/}'modules.txt requires go >= 1.99999 \(running go 1\..+\)$'
    
    -- go.mod --
    module example
    go 1.99999
    
    -- p.go --
    package p
    
    -- go.mod.old --
    module example
    go 1.10
    
    -- go.work.new --
    go 1.99999
    use .
    
    -- go.work.old --
    go 1.10
    use .
    
    -- notvendor/modules.txt --
    # golang.org/x/text v0.9.0
    ## explicit; go 1.99999
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work.txt

    # Test that we don't run into "newRequirements called with unsorted roots"
    # panic with unsorted main modules.
    cp go.work.backwards go.work
    go work use # update go version
    go run example.com/d
    
    # Test that command-line-arguments work inside and outside modules.
    # This exercises the code that determines which module command-line-arguments
    # belongs to.
    go list ./b/main.go
    env GOWORK=off
    go build -n -o foo foo.go
    env GOWORK=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module.sha1

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/with-custom-attributes.module

    {
        "formatVersion": "1.0",
        "component": {
            "group": "org.gradle.test",
            "module": "publishTest",
            "version": "1.9",
            "attributes": {
                "org.gradle.status": "milestone",
                "quality": "canary"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 264 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_split.txt

    )
    -- split.1/go.mod --
    module example.net/split
    
    go 1.16
    -- split.2/go.mod --
    module example.net/split
    
    go 1.16
    -- split.2/nested/nested.go --
    package nested
    -- split.3/go.mod --
    module example.net/split
    
    go 1.16
    -- nested.0/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.1/go.mod --
    module example.net/split/nested
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_nest_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is the top-level module.
    
    -- .mod --
    module example.com/nest
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest
    -- sub/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 244 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_nest_v1.1.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is the top-level module.
    
    -- .mod --
    module example.com/nest
    -- .info --
    {"Version": "v1.1.0"}
    -- go.mod --
    module example.com/nest
    -- sub/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 244 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_vendor_empty.txt

    go work vendor
    stderr 'go: no dependencies to vendor'
    ! exists vendor/modules.txt
    ! go list .
    stderr 'go: no modules were found in the current workspace'
    mkdir vendor
    mv bad_modules.txt vendor/modules.txt
    ! go list .
    stderr 'go: no modules were found in the current workspace'
    
    -- bad_modules.txt --
    # a/module
    a/package
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 344 bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/text8.txt

    If module-aware mode is enabled, "go install" runs in the context of the main
    module.
    -- text --
    If the arguments have version suffixes
    (like @latest or @v1.0.0), "go install"
    builds packages in module-aware mode,
    ignoring the go.mod file in the current
    directory or any parent directory,
    if there is one. This is useful for
    installing executables without affecting
    the dependencies of the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.javaLanguageSettings.languageLevel.isJava5()
            // modules
            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings == null
        }
    
        def "can retrieve project and module language level for multi project build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top