Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,409 for WORK (0.05 sec)

  1. LICENSES/third_party/forked/gotestsum/LICENSE

          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 01 18:49:15 UTC 2022
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/LICENSE

          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 11:09:02 UTC 2017
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

            return operation(operationContext -> {
                    ImmutableSortedMap<String, FileSystemSnapshot> unfilteredOutputSnapshots = captureOutputSnapshots(work, context);
    
                    OverlappingOutputs overlappingOutputs = detectOverlappingOutputs(work, context, unfilteredOutputSnapshots);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. licenses/github.com/spf13/afero/LICENSE.txt

          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_dot.txt

    ! go get ./subdir
    stderr '^go: \.[/\\]subdir \('$WORK'[/\\]gopath[/\\]src[/\\]dir[/\\]subdir\) is not a package in module rooted at '$WORK'[/\\]gopath[/\\]src[/\\]dir$'
    ! go list
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$WORK'[/\\]gopath[/\\]src[/\\]dir$'
    
    cd subdir
    ! go list
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$WORK'[/\\]gopath[/\\]src[/\\]dir[/\\]subdir$'
    cd ..
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/get_issue53955.txt

    -- $WORK/repo/go.mod --
    module github.com/golang/issue53955
    
    go 1.18
    -- $WORK/repo/issue53955.go --
    package issue53955
    -- $WORK/repo/extra.go --
    package issue53955
    -- $WORK/.git-refs-1 --
    2cb3d49f8874b9362ed0ddd2a6512e4108bbf6b1 refs/heads/main
    050526ebf5883191e990529eb3cc9345abaf838c refs/tags/v1.0.9
    -- $WORK/m/go.mod --
    module m
    
    go 1.18
    -- $WORK/home/gopher/.gitconfig --
    [user]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            when:
            step.execute(work, context)
            then:
            _ * context.incrementalExecution >> true
            1 * delegate.execute(work, context) >> delegateResult
            0 * _
        }
    
        def "does not cleanup outputs when work does not opt-in"() {
            when:
            step.execute(work, context)
            then:
            _ * context.incrementalExecution >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    # If the binary is sitting in a bin dir next to ../pkg/tool, that counts as a GOROOT,
    # so it should find the new tree.
    mkdir $WORK/new/pkg/tool
    exec $WORK/bin/check$GOEXE $WORK/new/bin/go$GOEXE $WORK/new
    exec $WORK/bin/check$GOEXE $WORK/new/bin/${GOOS}_${GOARCH}/go$GOEXE $WORK/new
    ! stderr 'GOPATH set to GOROOT'
    
    -- check.go --
    package main
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_overlay.txt

    # go.work in overlay, but not on disk.
    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    ! stdout example.com/c
    
    # control case for go.work on disk and in overlay:
    # go.work is on disk but not in overlay.
    cp go.work.non-overlay go.work
    go list -m
    stdout example.com/a
    stdout example.com/b
    stdout example.com/c
    
    # go.work on disk and in overlay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cpu_profile_twice.txt

    env GO111MODULE=off
    
    # Issue 23150
    
    [short] skip
    
    go test -o=$WORK/x.test -cpuprofile=$WORK/cpu_profile_twice.out x
    rm $WORK/cpu_profile_twice.out
    
    go test -o=$WORK/x.test -cpuprofile=$WORK/cpu_profile_twice.out x
    exists $WORK/cpu_profile_twice.out
    
    
    -- x/x_test.go --
    package x_test
    import (
        "testing"
        "time"
    )
    func TestSleep(t *testing.T) {
        time.Sleep(10 * time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 391 bytes
    - Viewed (0)
Back to top