Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,409 for WORK (0.17 sec)

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

    ! go install ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    cd a/c
    ! go run .
    stderr 'current directory is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use \.\.'
    
    cd ../..
    ! go run .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStep.java

            CachingResult result = performSkip(work, context);
            broadcastWorkInputs(work, true);
            return result;
        }
    
        abstract protected CachingResult performSkip(UnitOfWork work, C context);
    
        private CachingResult executeWithNonEmptySources(UnitOfWork work, C context) {
            broadcastWorkInputs(work, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractResolveCachingStateStep.java

                    : calculateCachingStateWithNoCapturedInputs(work));
    
            cachingState.apply(
                enabled -> logCacheKey(enabled.getCacheKeyCalculatedState().getKey(), work),
                disabled -> logDisabledReasons(disabled.getDisabledReasons(), work)
            );
    
            UpToDateResult result = executeDelegate(work, context, cachingState);
            return new CachingResult(result, cachingState);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
            _ * work.executionBehavior >> UnitOfWork.ExecutionBehavior.NON_INCREMENTAL
            1 * delegate.execute(work, _ as IncrementalChangesContext) >> { UnitOfWork work, IncrementalChangesContext delegateContext ->
                def changes = delegateContext.changes.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/godebug_default.txt

    cat q/go.mod
    cp go.work.21 go.work
    go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}'
    ! stdout panicnil
    stdout randautoseed=0
    rm go.work
    
    # Go 1.20 workspace with Go 1.21 module cannot happen.
    cp go.work.20 go.work
    cp go.mod.21 go.mod
    ! go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}'
    stderr 'go: module . listed in go.work file requires go >= 1.21'
    rm go.work
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_init_path.txt

    # Regression test for https://go.dev/issue/51448.
    # 'go work init . .. foo/bar' should produce a go.work file
    # with the same paths as 'go work init; go work use -r ..',
    # and it should have 'use .' rather than 'use ./.' inside.
    
    cd dir
    
    go work init . .. foo/bar
    mv go.work go.work.init
    
    go work init
    go work use -r ..
    cmp go.work go.work.init
    
    cmpenv go.work $WORK/go.work.want
    
    -- go.mod --
    module example
    go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 571 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

        }
        /**
         * Register a new item of asynchronous work with the provided build operation.
         *
         * @param operation - The build operation to associate the asynchronous work with
         * @param completion - The completion of the asynchronous work
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    # any dependencies.
    go tool covdata pkglist -i=$WORK/covdata
    stdout cmd/nm
    ! stdout cmd/internal/goobj pkglist.txt
    
    # ... now collect a coverage profile from a Go file
    # listed on the command line.
    go build -cover -o $WORK/another.exe testdata/another.go
    mkdir $WORK/covdata2
    env GOCOVERDIR=$WORK/covdata2
    exec $WORK/another.exe 
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_GOTMPDIR.txt

    [!GOOS:windows] env GOCACHE=$WORK/gocache
    [GOOS:windows] env GOCACHE=$WORK\gocache
    
    # 'go build' should use GOTMPDIR if set.
    [!GOOS:windows] env GOTMPDIR=$WORK/my-favorite-tmpdir
    [GOOS:windows] env GOTMPDIR=$WORK\my-favorite-tmpdir
    mkdir $GOTMPDIR
    go build -x hello.go
    stderr ^WORK=.*my-favorite-tmpdir
    
    # Make GOTMPDIR a regular file. This prevents the creation of work directories,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_ambiguous_import.txt

    	example.com/a/x v0.1.0 => ./ax
    )
    -- $WORK/importx/importx.go --
    package importx
    import _ "example.com/a/x"
    -- $WORK/importy/importy.go --
    package importy
    import _ "example.com/a/y"
    -- $WORK/a/go.mod --
    module example.com/a
    go 1.14
    -- $WORK/a/x/x.go --
    package x
    -- $WORK/a/y/y.go --
    package y
    -- $WORK/ax/go.mod --
    module example.com/a/x
    go 1.14
    -- $WORK/ax/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 19:09:53 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top