Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,070 for step2 (0.29 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveIncrementalCachingStateStepTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableList
    import org.gradle.internal.execution.history.PreviousExecutionState
    import org.gradle.internal.execution.history.changes.ExecutionStateChanges
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

    import java.util.List;
    import java.util.Optional;
    
    /**
     * A step that executes a unit of work and wraps it into a {@link ExecuteWorkBuildOperationType} build operation.
     */
    public class ExecuteWorkBuildOperationFiringStep<C extends IdentityContext, R extends CachingResult> extends BuildOperationStep<C, R> implements Step<C, R> {
    
        private final Step<? super C, R> delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/HandleStaleOutputsStepTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.execution.BuildOutputCleanupRegistry
    import org.gradle.internal.execution.OutputChangeListener
    import org.gradle.internal.execution.UnitOfWork
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveNonIncrementalCachingStateStepTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableList
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveChangesStep.java

        private final ExecutionStateChangeDetector changeDetector;
    
        private final Step<? super IncrementalChangesContext, R> delegate;
    
        public ResolveChangesStep(
            ExecutionStateChangeDetector changeDetector,
            Step<? super IncrementalChangesContext, R> delegate
        ) {
            this.changeDetector = changeDetector;
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

        private final Step<? super C, ? extends R> delegate;
    
        public HandleStaleOutputsStep(
            BuildOperationRunner buildOperationRunner,
            BuildOutputCleanupRegistry cleanupRegistry,
            Deleter deleter,
            OutputChangeListener outputChangeListener,
            OutputFilesRepository outputFilesRepository,
            Step<? super C, ? extends R> delegate
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepConcurrencyTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableListMultimap
    import com.google.common.collect.ImmutableSortedMap
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.caching.internal.origin.OriginMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * is by declaring that step to be the last step of the pipeline. Nevertheless, we refer to the
     * "value" of a successful step or the "result" (value or exception) of any step.
     *
     * <ol>
     *   <li>A pipeline starts at its leaf step (or steps), which is created from either a callable
     *       block or a {@link ListenableFuture}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

        private final Deleter deleter;
        private final OutputChangeListener outputChangeListener;
        private final Step<? super C, ? extends R> delegate;
    
        public RemovePreviousOutputsStep(
            Deleter deleter,
            OutputChangeListener outputChangeListener,
            Step<? super C, ? extends R> delegate
        ) {
            this.deleter = deleter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildOperationStep.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    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