Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,409 for WORK (0.06 sec)

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

    # Issue 31603: Import with non-empty srcDir should work.
    env GO111MODULE=on
    exec $WORK/testfindonly$GOEXE gobuild.example.com/x/y/z/i $WORK
    ! stdout 'build constraints'
    stdout '^dir='$WORK'.+i err=<nil>$'
    
    # Issue 37153: Import with empty srcDir should work.
    env GO111MODULE=on
    exec $WORK/testfindonly$GOEXE gobuild.example.com/x/y/z/i ''
    ! stdout 'build constraints'
    stdout '^dir='$WORK'.+i err=<nil>$'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_relative_tmpdir.txt

    env GO111MODULE=off
    
    # If GOTMPDIR is relative, 'go build' should derive an absolute $WORK directory.
    cd $WORK
    mkdir tmp
    env GOTMPDIR=tmp
    go build -work a
    stderr 'WORK='$WORK
    
    # Similarly if TMP/TMPDIR is relative.
    env GOTMPDIR=
    env TMP=tmp    # Windows
    env TMPDIR=tmp # Unix
    go build -work a
    stderr 'WORK='$WORK
    
    -- a/a.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 337 bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            return delegate.execute(work, createIdentityContext(work, context));
        }
    
        @Override
        public <T> Deferrable<Try<T>> executeDeferred(UnitOfWork work, C context, Cache<Identity, IdentityCacheResult<T>> cache) {
            return delegate.executeDeferred(work, createIdentityContext(work, context), cache);
        }
    
        @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_auto.txt

    cmp $WORK/modules-1.13.txt vendor/modules.txt
    
    go list -mod=vendor -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]printversion$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]version$'
    
    # When the version is upgraded to 1.14, 'go mod vendor' should write a
    # vendor/modules.txt with the updated 1.14 annotations.
    go mod edit -go=1.14
    go mod vendor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_goroot_symlink.txt

    mkdir $WORK/lib/goroot
    mkdir $WORK/share/goroot
    symlink $WORK/share/goroot/src -> $GOROOT${/}src
    symlink $WORK/lib/goroot/src -> ../../share/goroot/src
    symlink $WORK/lib/goroot/pkg -> $GOROOT${/}pkg
    
    # Verify that our symlink shenanigans don't prevent cmd/go from finding its
    # GOROOT using os.Executable.
    #
    # To do so, we copy the actual cmd/go executable — which is implemented as the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_errors_pos.txt

    # Test case for #67623 in go.work files: make sure the errors are
    # printed on lines starting with file and line number so they
    # can be easily parsed by tools.
    
    cp go.work.repeated.txt go.work
    ! go list
    stderr '^go.work:4: path .* appears multiple times in workspace$'
    
    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cache_unix.txt

    [GOOS:plan9]   skip 'plan9 does not use XDG_CACHE_HOME'
    
    mkdir $WORK/gocache
    mkdir $WORK/xdg
    mkdir $WORK/home
    
    # Set GOCACHE, XDG_CACHE_HOME, and HOME.
    env GOCACHE=$WORK/gocache
    env XDG_CACHE_HOME=$WORK/xdg
    env HOME=$WORK/home
    
    # With all three set, we should prefer GOCACHE.
    go env GOCACHE
    stdout $WORK'/gocache$'
    
    # Without GOCACHE, we should prefer XDG_CACHE_HOME over HOME.
    env GOCACHE=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:09:07 UTC 2023
    - 1010 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_use_toolchain.txt

    go work use ./m1_22_0
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work use with newer modules should bump go and toolchain,
    # including updating to a newer toolchain as needed.
    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    rm go.work
    go work init
    env GOTOOLCHAIN=local
    ! go work use ./m1_22_0
    stderr '^go: m1_22_0'${/}'go.mod requires go >= 1.22.0 \(running go 1.21; GOTOOLCHAIN=local\)$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/goroot_executable.txt

    mkdir $WORK/other/bin
    symlink $WORK/other/bin/go$GOEXE -> $WORK/new/bin/go$GOEXE
    exec $WORK/bin/check$GOEXE $WORK/new/bin/go$GOEXE $WORK/new
    
    rm $WORK/new/pkg
    
    # Runtime GOROOT:
    # Binaries built in the new tree should report the
    # new tree when they call runtime.GOROOT.
    symlink $WORK/new/src -> $TESTGOROOT/src
    symlink $WORK/new/pkg -> $TESTGOROOT/pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_empty_err.txt

    stderr 'example.com/m/testonly: no non-test Go files in '$WORK${/}'testonly'
    
    -- $WORK/go.mod --
    module example.com/m
    
    go 1.14
    
    -- $WORK/empty/empty.txt --
    -- $WORK/exclude/exclude.go --
    // +build exclude
    
    package exclude
    -- $WORK/testonly/testonly_test.go --
    package testonly_test
    -- $WORK/excluded-stdout --
    package ./excluded: cannot find package "." in:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 922 bytes
    - Viewed (0)
Back to top