Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,672 for iwork (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/build_gopath_order.txt

    env GO111MODULE=off
    env GOPATH=$WORK/p1${:}$WORK/p2
    mkdir $WORK/p1/src/foo $WORK/p2/src/baz
    mkdir $WORK/p2/pkg/${GOOS}_${GOARCH} $WORK/p1/src/bar
    cp foo.go $WORK/p1/src/foo/foo.go
    cp baz.go $WORK/p2/src/baz/baz.go
    cp foo.a $WORK/p2/pkg/${GOOS}_${GOARCH}/foo.a
    cp bar.go $WORK/p1/src/bar/bar.go
    
    go install -x bar
    
    # add in baz.a to the mix
    mkdir $WORK/p1/pkg/${GOOS}_${GOARCH}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 855 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_gofile_in_goroot.txt

    env GO111MODULE=off
    go list ./...
    [!GOOS:windows] stdout ^_$WORK/gopath/src$
    [GOOS:windows] stdout gopath/src$
    
    go list all
    ! stdout gopath/src
    
    -- $WORK/goroot/src/go.mod --
    module std
    
    go 1.14
    -- $WORK/goroot/src/foo.go --
    package foo
    -- $WORK/goroot/src/fmt/fmt.go --
    package fmt
    -- $WORK/goroot/src/cmd/README --
    This directory must exist in order for the 'cmd' pattern to have something to
    match against.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

            /**
             * Execute the unit of work using available optimizations like
             * up-to-date checks, build cache and incremental execution.
             */
            Result execute();
    
            /**
             * Load the unit of work from the given cache, or defer its execution.
             *
             * If the cache already contains the outputs for the given work, an already finished {@link Deferrable} will be returned.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top