Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,022 for WORK (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

            _ * outputSnapshotter.snapshotOutputs(work, _) >> beforeExecutionOutputSnapshots
    
            _ * work.overlappingOutputHandling >> DETECT_OVERLAPS
            1 * overlappingOutputDetector.detect(previousOutputSnapshots, beforeExecutionOutputSnapshots) >> null
    
            interaction { snapshotState() }
            1 * delegate.execute(work, _ as BeforeExecutionContext) >> { UnitOfWork work, BeforeExecutionContext delegateContext ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    This is the fastest isolation mode because it requires the least overhead to set up and execute the work item.
    However, it will use a single shared classloader for all units of work.
    This means that each unit of work can affect one another through static class state.
    It also means that every unit of work uses the same version of libraries on the buildscript classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

     * location and we fall back to re-executing the work.</li>
     * <li>If we end up executing the work (either because there is no existing immutable workspace, or it is
     * inconsistent), then a unique temporary workspace directory is provided to the work to create its outputs
     * in, and the work is executed.</li>
     * <li>When the execution of the work finishes, we snapshot the outputs of the work, and store their hashes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/HandleStaleOutputsStepTest.groovy

        }
    
        def "does not remove any files when work does not allow it"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
            _ * work.shouldCleanupStaleOutputs() >> false
            1 * delegate.execute(work, context) >> delegateResult
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

        /**
         * Expanding the thread pool is necessary when work items submit other work.  We want to avoid a starvation scenario where
         * the thread pool is full of work items that are waiting on other queued work items.  The queued work items cannot execute
         * because the thread pool is already full with their parent work items.  We use expand() to allow the thread pool to temporarily
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	work.stackRoots = allGsSnapshot()
    	work.nStackRoots = len(work.stackRoots)
    
    	work.markrootNext = 0
    	work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
    
    	// Calculate base indexes of each root type
    	work.baseData = uint32(fixedRootCount)
    	work.baseBSS = work.baseData + uint32(work.nDataRoots)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. licenses/github.com/go-jose/go-jose/v4/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)
  10. LICENSES/vendor/go.uber.org/mock/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: Thu Mar 07 08:12:16 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top