Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,070 for step2 (0.08 sec)

  1. docs/ja/docs/tutorial/security/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
    - 10.5K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/first-steps.md

    Sebastián Ramírez <******@****.***> 1652313976 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/IdentityCacheStepTest.groovy

        def step = new IdentityCacheStep<>(progressEventEmitter, delegate)
    
        def "executes when no cached output exists"() {
            def delegateOutput = Mock(Object)
            def delegateResult = Mock(WorkspaceResult)
            def originMetadata = Stub(OriginMetadata) {
                buildInvocationId >> "123245"
            }
    
            def execution = step.executeDeferred(work, context, cache)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractResolveCachingStateStepTest.groovy

        }
    
        abstract S createStep()
    
        def setup() {
            delegateResult.duration >> Duration.ofSeconds(1)
            step = createStep()
        }
    
        def "build cache disabled reason is reported when build cache is disabled"() {
            when:
            step.execute(work, context)
            then:
            _ * buildCache.enabled >> false
            _ * context.beforeExecutionState >> Optional.empty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveIncrementalCachingStateStep.java

        private final Step<? super IncrementalCachingContext, ? extends UpToDateResult> delegate;
    
        public ResolveIncrementalCachingStateStep(
            BuildCacheController buildCache,
            boolean emitDebugLogging,
            Step<? super IncrementalCachingContext, ? extends UpToDateResult> delegate
        ) {
            super(buildCache, emitDebugLogging);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.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.ImmutableSortedMap
    import org.gradle.internal.execution.OutputSnapshotter
    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
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/DeferredExecutionAwareStep.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.cache.Cache;
    import org.gradle.internal.Deferrable;
    import org.gradle.internal.Try;
    import org.gradle.internal.execution.ExecutionEngine.IdentityCacheResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStepTest.groovy

        def sourceFileFingerprint = Mock(CurrentFileCollectionFingerprint)
    
        abstract protected AbstractSkipEmptyWorkStep<C> createStep()
    
        AbstractSkipEmptyWorkStep<C> step
    
        def setup() {
            step = createStep()
            _ * work.inputFingerprinter >> inputFingerprinter
            context.getInputProperties() >> { knownInputProperties }
            context.getInputFileProperties() >> { knownInputFileProperties }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BroadcastChangingOutputsStepTest.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.file.FileCollection
    import org.gradle.internal.execution.OutputChangeListener
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.file.TreeType
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top