Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,022 for WORK (0.04 sec)

  1. src/runtime/mgc.go

    	}
    	work.tstart = startTime
    
    	// Check that there's no marking work remaining.
    	if work.full != 0 || work.markrootNext < work.markrootJobs {
    		print("runtime: full=", hex(work.full), " next=", work.markrootNext, " jobs=", work.markrootJobs, " nDataRoots=", work.nDataRoots, " nBSSRoots=", work.nBSSRoots, " nSpanRoots=", work.nSpanRoots, " nStackRoots=", work.nStackRoots, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_implicit_go_requirement.txt

    # Issue 66207: provide a better error message when there's no
    # go directive in a go.work file so 1.18 is implicitly required.
    
    ! go list
    stderr 'go: module . listed in go.work file requires go >= 1.21, but go.work implicitly requires go 1.18; to update it:\s+go work use'
    
    go work use
    go list
    stdout foo
    
    -- go.work --
    use .
    -- go.mod --
    module foo
    
    go 1.21
    -- foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:35:47 UTC 2024
    - 384 bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            this.delegate = delegate;
        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            WorkValidationContext validationContext = context.getValidationContext();
            work.validate(validationContext);
            context.getBeforeExecutionState()
                .ifPresent(beforeExecutionState -> validateImplementations(work, beforeExecutionState, validationContext));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStepTest.groovy

            then:
            1 * delegate.execute(work, {
                it.inputProperties as Map == ["known": knownSnapshot]
                it.inputFileProperties as Map == ["known-file": knownFileFingerprint]
            }) >> delegateResult
            1 * workInputListeners.broadcastFileSystemInputsOf(work, allFileInputs)
            0 * _
    
            result == delegateResult
        }
    
        def "delegates when work has sources"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraphController.java

    import java.util.Collection;
    
    /**
     * Allows the work graph for a particular build in the build tree to be populated and executed.
     */
    @ServiceScope(Scope.Build.class)
    public interface BuildWorkGraphController {
        /**
         * Locates a future task node in this build's work graph, for use from some other build's work graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/README

    	# 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
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractResolveCachingStateStepTest.groovy

            }) >> delegateResult
        }
    
        def "disables caching when work is invalid"() {
            when:
            step.execute(work, context)
            then:
            _ * buildCache.enabled >> false
            _ * context.beforeExecutionState >> Optional.empty()
            _ * context.validationProblems >> ImmutableList.of(Mock(Problem))
            1 * delegate.execute(work, { CachingContext context ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStepTest.groovy

            delegateResult.duration >> delegateDuration
    
            when:
            def result = step.execute(work, context)
            then:
            !result.afterExecutionOutputState.present
            result.duration == delegateDuration
            assertNoOperation()
    
            1 * delegate.execute(work, _) >> delegateResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ValidateStepTest.groovy

        }
    
        def "executes work when there are no violations"() {
            boolean validated = false
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
            1 * delegate.execute(work, { ValidationFinishedContext context -> context.validationProblems.empty }) >> delegateResult
            _ * work.validate(_ as WorkValidationContext) >> { validated = true }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. hack/update-go-workspace.sh

    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    # Ensure all modules are included in go.work
    go work edit -use .
    git ls-files -z ':(glob)./staging/src/k8s.io/*/go.mod' \
        | xargs -0 -n1 dirname \
        | tr '\n' '\0' \
        | xargs -0 -n1 go work edit -use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 10 15:44:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top