Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,070 for step2 (0.05 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ValidateStepTest.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.problems.Severity
    import org.gradle.api.problems.internal.GradleCoreProblemGroup
    import org.gradle.api.problems.internal.Problem
    import org.gradle.internal.execution.WorkValidationContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    	var testScenarios = []struct {
    		name           string
    		initialObjects []runtime.Object
    		steps          []step
    	}{
    		{
    			name: "good child in ns1 -> cluster-scoped owner",
    			steps: []step{
    				// setup
    				createObjectInClient("", "v1", "nodes", "", makeMetadataObj(node1)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. 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: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    More specifically, a Gradle plugin written in Java and tested with https://www.spekframework.org/[Spek].
    First, we'll get the project set up on your local machine before covering the same steps on CI.
    
    Just follow these steps:
    
    === Clone the https://github.com/gradle/gradle-site-plugin[Gradle Site Plugin] repository
    
    [listing.terminal.sample-command]
    ----
    $ git clone https://github.com/gradle/gradle-site-plugin.git
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

    public class StoreExecutionStateStep<C extends PreviousExecutionContext & CachingContext, R extends AfterExecutionResult> implements Step<C, R> {
        private final Step<? super C, ? extends R> delegate;
    
        public StoreExecutionStateStep(
            Step<? super C, ? extends R> delegate
        ) {
            this.delegate = delegate;
        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller_test.go

    	})
    	kube.WaitForCacheSync("test", stopCh, c.HasSynced)
    
    	for _, step := range steps {
    		t.Run(step.name, func(t *testing.T) {
    			switch {
    			case step.add != nil:
    				secrets.Create(step.add)
    			case step.update != nil:
    				secrets.Update(step.update)
    			case step.delete != nil:
    				secrets.Delete(step.delete.Name, step.delete.Namespace)
    			}
    
    			assert.EventuallyEqual(t, func() []result {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

        The `--upgrade` option tells `pip` to upgrade the packages if they are already installed.
    
        Because the previous step copying the file could be detected by the **Docker cache**, this step will also **use the Docker cache** when available.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.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.caching.BuildCacheKey
    import org.gradle.caching.internal.CacheableEntity
    import org.gradle.caching.internal.controller.BuildCacheController
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/alerts.md

    Follow below steps to enable and use AlertManager.
    
    ## Deploy and start AlertManager
    Install Prometheus AlertManager from https://prometheus.io/download/ and create configuration as below
    
    ```yaml
    route:
      group_by: ['alertname']
      group_wait: 30s
      group_interval: 5m
      repeat_interval: 1h
      receiver: 'web.hook'
    receivers:
      - name: 'web.hook'
        webhook_configs:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr7_writing_plugins.adoc

            System.out.println(new App().getGreeting());
        }
    }
    ----
    
    Congratulations, you have completed the tutorial!
    
    == Step 4. 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: Fri Mar 29 17:16:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top