Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,210 for iwork (0.09 sec)

  1. src/cmd/go/scriptreadme_test.go

    	# GOPATH with p1 in d2, p2 in d2
    	env GOPATH=$WORK${/}d1${:}$WORK${/}d2
    
    	# build & install p1
    	env
    	go install -i p1
    	! stale p1
    	! stale p2
    
    	# modify p2 - p1 should appear stale
    	cp $WORK/p2x.go $WORK/d2/src/p2/p2.go
    	stale p1 p2
    
    	# build & install p1 again
    	go install -i p11
    	! stale p1
    	! stale p2
    
    	-- $WORK/d1/src/p1/p1.go --
    	package p1
    	import "p2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

    /**
     * A {@link BuildOperationType} for executing any kind of work inside the execution engine.
     * <p>
     * This operation encompasses most of the execution engine pipeline, starting immediately
     * after the work is identified and a workspace is assigned.
     * <p>
     * Note that the pipeline does not have to execute fully, for instance if the work is up-to-date.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. licenses/cel.dev/expr/proto/test/v1/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. LICENSES/vendor/sigs.k8s.io/knftables/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: Tue Jan 23 13:09:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. CREDITS

          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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  6. LICENSES/vendor/k8s.io/gengo/v2/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 Mar 01 06:07:39 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

                return executeWithTimeout(work, context, timeout);
            } else {
                return executeWithoutTimeout(work, context);
            }
        }
    
        @SuppressWarnings("Finally")
        private R executeWithTimeout(UnitOfWork work, C context, Duration timeout) {
            Timeout taskTimeout = timeoutHandler.start(Thread.currentThread(), timeout, work, currentBuildOperationRef.get());
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/env_gomod_issue61455.txt

    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    # go env GOWORK should not trigger a toolchain download
    cd $GOPATH/work
    go env GOWORK
    stdout work[/\\]go.work
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    -- $GOPATH/mod/go.mod --
    module example.com
    
    go 1.700
    
    -- $GOPATH/work/go.work --
    module example.com
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 16:05:39 UTC 2024
    - 510 bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepTest.groovy

            getWorkspace(workId) >> workspace
        }
    
        def step = new AssignImmutableWorkspaceStep(deleter, fileSystemAccess, immutableWorkspaceMetadataStore, outputSnapshotter, delegate)
        def work = Stub(ImmutableUnitOfWork)
    
        def setup() {
            work.workspaceProvider >> workspaceProvider
        }
    
        def "returns immutable workspace when already exists"() {
            def outputFile = immutableWorkspace.file("output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 14:32:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityCacheStep.java

            this.delegate = delegate;
        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            return delegate.execute(work, context);
        }
    
        @Override
        public <T> Deferrable<Try<T>> executeDeferred(UnitOfWork work, C context, Cache<Identity, IdentityCacheResult<T>> cache) {
            Identity identity = context.getIdentity();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:30:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top