Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 444 for step2 (0.91 sec)

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

        private static final Logger LOGGER = LoggerFactory.getLogger(BuildCacheStep.class);
    
        private final BuildCacheController buildCache;
        private final Deleter deleter;
        private final FileSystemAccess fileSystemAccess;
        private final OutputChangeListener outputChangeListener;
        private final Step<? super C, ? extends AfterExecutionResult> delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    	// then to avoid the link step, report the link as up-to-date.
    	// We avoid the nested build ID problem in the previous special case
    	// by recording the test results in the cache under the action ID half.
    	if len(a.triggers) == 1 && a.triggers[0].TryCache != nil && a.triggers[0].TryCache(b, a.triggers[0]) {
    		// Best effort attempt to display output from the compile and link steps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    The basic steps of that process consist of:
    
     1. _Configure_ — applies the configuration defined in the Ivy settings file
     2. _Resolve_ — locates the declared dependencies and downloads them to the cache if necessary
     3. _Retrieve_ — copies the cached dependencies to another directory
    
    Gradle's process is similar, but you don't have to explicitly invoke the first two steps as it performs them automatically.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/IgnoreKotlinCompilerWarningIntegrationTest.groovy

    \tat org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:49)
    \tat org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:34)
    \tat org.gradle.internal.execution.steps.CancelExecutionStep.execute(CancelExecutionStep.java:43)
    \tat org.gradle.internal.execution.steps.TimeoutStep.executeWithoutTimeout(TimeoutStep.java:73)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

        ```
    
        </div>
    
    If it shows the `pip` binary at `env/bin/pip` then it worked. 🎉
    
    Make sure you have the latest pip version on your local environment to avoid errors on the next steps:
    
    <div class="termy">
    
    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/keccakf.go

    	// in the keccak reference code.
    	var t, bc0, bc1, bc2, bc3, bc4, d0, d1, d2, d3, d4 uint64
    
    	for i := 0; i < 24; i += 4 {
    		// Combines the 5 steps in each round into 2 steps.
    		// Unrolls 4 rounds per loop and spreads some steps across rounds.
    
    		// Round 1
    		bc0 = a[0] ^ a[5] ^ a[10] ^ a[15] ^ a[20]
    		bc1 = a[1] ^ a[6] ^ a[11] ^ a[16] ^ a[21]
    		bc2 = a[2] ^ a[7] ^ a[12] ^ a[17] ^ a[22]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopbce.go

    				// we can trust it.
    				if inclusive {
    					// ind <= knn - k cannot overflow if step is at most k
    					return step <= k
    				}
    				// ind < knn - k cannot overflow if step is at most k+1
    				return step <= k+1 && k != maxSignedValue(limit.Type)
    			} else { // step < 0
    				if limit.Op == OpConst64 {
    					// Figure out the actual smallest value.
    					v := limit.AuxInt
    					if !inclusive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/leaderelection_test.go

    	watcher := &fakeDefaultWatcher{}
    	// First pod becomes the leader
    	_, stop := createElection(t, "pod1", "", watcher, true, client)
    	// A new pod is not the leader
    	_, stop2 := createElection(t, "pod2", "", watcher, false, client)
    	close(stop2)
    	close(stop)
    }
    
    func TestPerRevisionElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{"foo"}
    	// First pod becomes the leader
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/encoding/json/scanner.go

    		return scanBeginLiteral
    	case 't': // beginning of true
    		s.step = stateT
    		return scanBeginLiteral
    	case 'f': // beginning of false
    		s.step = stateF
    		return scanBeginLiteral
    	case 'n': // beginning of null
    		s.step = stateN
    		return scanBeginLiteral
    	}
    	if '1' <= c && c <= '9' { // beginning of 1234.5
    		s.step = state1
    		return scanBeginLiteral
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

    fun BuildSteps.customGradle(init: GradleBuildStep.() -> Unit, custom: GradleBuildStep.() -> Unit): GradleBuildStep =
        GradleBuildStep(init)
            .apply(custom)
            .also {
                step(it)
            }
    
    /**
     * Adds a [Gradle build step](https://confluence.jetbrains.com/display/TCDL/Gradle)
     * that runs with the Gradle wrapper.
     *
     * @see GradleBuildStep
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
Back to top