Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,022 for WORK (0.04 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

        }
    
        @Override
        public AfterExecutionResult execute(UnitOfWork work, C context) {
            Result result = delegate.execute(work, context);
            Optional<ExecutionOutputState> afterExecutionOutputState = context.getCachingState().getCacheKeyCalculatedState()
                .map(cacheKeyCalculatedState -> captureOutputsAfterExecution(work, context, cacheKeyCalculatedState, result));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_git_missing_tree.txt

    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    
    # Build the module, which should succeed
    go build -v -buildvcs=true -o test
    go version -m test
    stdout '^\tbuild\tvcs.revision=fe3c8204d2332a731166269932dd23760c1b576a$'
    
    -- $WORK/repo/go.mod --
    module github.com/golang/issue65339
    
    go 1.20
    -- $WORK/repo/main.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. LICENSES/vendor/sigs.k8s.io/yaml/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 Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/workcmd/edit.go

    	Long: `Edit provides a command-line interface for editing go.work,
    for use primarily by tools or scripts. It only reads go.work;
    it does not look up information about the modules involved.
    If no file is specified, Edit looks for a go.work file in the current
    directory and its parent directories
    
    The editing flags specify a sequence of editing operations.
    
    The -fmt flag reformats the go.work file without making other changes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ExecuteStepTest.groovy

            when:
            def result = step.execute(work, context)
    
            then:
            result.execution.get().outcome == expectedOutcome
            // Check
            result.duration.toMillis() >= 100
    
            _ * context.inputChanges >> Optional.empty()
            _ * work.execute({ UnitOfWork.ExecutionRequest executionRequest ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                            // Cannot get a lease to run work
                            // Do not call `startWaitingForNextItem()` as there may be work available but this worker cannot start it, and so should not be considered "waiting for work".
                            // The health monitoring is currently only concerned with whether work can be started.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphTest.groovy

    import org.gradle.internal.build.ExecutionResult
    import org.gradle.internal.buildtree.BuildTreeWorkGraphPreparer
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.test.fixtures.work.TestWorkerLeaseService
    
    class DefaultIncludedBuildTaskGraphTest extends AbstractIncludedBuildTaskGraphTest {
        def workerLeaseService = new TestWorkerLeaseService()
        def preparer = Mock(BuildTreeWorkGraphPreparer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

        buildFile: File
    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    data class BuildToStore(
        val build: VintageGradleBuild,
        // Does this build have work scheduled?
        val hasWork: Boolean,
        // Does this build have a child build with work scheduled?
        val hasChildren: Boolean
    ) {
        fun hasChildren() = BuildToStore(build, hasWork, true)
    }
    
    
    /**
     * State cached for a build in the tree.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerExecutor.java

    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.work.AbstractConditionalExecution;
    import org.gradle.internal.work.AsyncWorkCompletion;
    import org.gradle.internal.work.AsyncWorkTracker;
    import org.gradle.internal.work.ConditionalExecutionQueue;
    import org.gradle.internal.work.DefaultConditionalExecutionQueue;
    import org.gradle.internal.work.WorkerThreadRegistry;
    import org.gradle.process.JavaForkOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStepTest.groovy

        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "output file properties are snapshotted as empty"() {
            when:
            step.execute(work, context)
    
            then:
            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
    - 1.7K bytes
    - Viewed (0)
Back to top