Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,070 for step2 (0.34 sec)

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

    public class TimeoutStep<C extends Context, R extends Result> implements Step<C, R> {
    
        private final TimeoutHandler timeoutHandler;
        private final CurrentBuildOperationRef currentBuildOperationRef;
        private final Step<? super C, ? extends R> delegate;
    
        public TimeoutStep(
            TimeoutHandler timeoutHandler,
            CurrentBuildOperationRef currentBuildOperationRef,
            Step<? super C, ? extends R> delegate
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.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 com.google.common.collect.ImmutableSortedMap
    import org.gradle.caching.internal.origin.OriginMetadata
    import org.gradle.internal.Try
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ChangingOutputsContext.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    /**
     * Context necessary for steps that change the outputs.
     *
     * This context doesn't add any new information, it encodes a requirement
     * in the type system that a step can change the outputs.
     */
    public class ChangingOutputsContext extends InputChangesContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1023 bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveNonIncrementalCachingStateStep.java

        private final Step<? super NonIncrementalCachingContext, ? extends UpToDateResult> delegate;
    
        public ResolveNonIncrementalCachingStateStep(
            BuildCacheController buildCache,
            boolean emitDebugLogging,
            Step<? super NonIncrementalCachingContext, ? extends UpToDateResult> delegate
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    - link:https://gradle-community.slack.com/[Gradle Slack Channel]
    - link:https://gradle.org/courses/[Free Gradle Training]
    
    == Step 2. Next steps
    We recommend going through each section of the User Manual.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/first-steps.md

    Nils Lindemann <******@****.***> 1705148182 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:16:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/first-steps.md

    Hasan Sezer Taşan <******@****.***> 1707397855 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Feb 08 13:10:55 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/first-steps.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  9. docs/en/docs/tutorial/first-steps.md

    You could also use it to generate code automatically, for clients that communicate with your API. For example, frontend, mobile or IoT applications.
    
    ## Recap, step by step
    
    ### Step 1: import `FastAPI`
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI` is a Python class that provides all the functionality for your API.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      RangeGenerator(T begin, T end, IncrementT step)
          : begin_(begin), end_(end),
            step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
      virtual ~RangeGenerator() {}
    
      virtual ParamIteratorInterface<T>* Begin() const {
        return new Iterator(this, begin_, 0, step_);
      }
      virtual ParamIteratorInterface<T>* End() const {
        return new Iterator(this, end_, end_index_, step_);
      }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top