Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for overlaywork (0.09 sec)

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

    stdout example.com/c
    
    # go.work on disk and in overlay.
    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    ! stdout example.com/c
    
    -- overlay.json --
    {"Replace": {"go.work": "overlaywork"}}
    -- overlaywork --
    use (
        ./a
        ./b
    )
    -- go.work.non-overlay --
    use (
        ./a
        ./b
        ./c
    )
    -- a/go.mod --
    module example.com/a
    -- b/go.mod --
    module example.com/b
    -- c/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
Back to top