Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,619 for iwork (0.2 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForWorkItemOperationsTest.groovy

    import org.gradle.tooling.events.OperationType
    import org.gradle.tooling.events.ProgressListener
    import org.gradle.tooling.events.work.WorkItemFailureResult
    import org.gradle.tooling.events.work.WorkItemFinishEvent
    import org.gradle.tooling.events.work.WorkItemStartEvent
    import org.gradle.tooling.events.work.WorkItemSuccessResult
    import org.gradle.tooling.internal.protocol.InternalBuildProgressListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top