Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,070 for step2 (0.09 sec)

  1. pkg/kube/inject/watcher_test.go

    		{deleted: cm},
    		{added: cm},
    	}
    
    	for i, step := range steps {
    		t.Run(fmt.Sprintf("[%v]", i), func(t *testing.T) {
    			g := NewWithT(t)
    
    			switch {
    			case step.added != nil:
    				_, err := cms.Create(context.TODO(), step.added, metav1.CreateOptions{})
    				g.Expect(err).Should(BeNil())
    			case step.updated != nil:
    				_, err := cms.Update(context.TODO(), step.updated, metav1.UpdateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. .github/workflows/mint.yml

              TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker
    
          - name: multipart uploads test
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/multipart/migrate.sh "${{ steps.vars.outputs.sha_short }}"
    
          - name: compress and encrypt
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "compress-encrypt" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker_test.go

    		{secondsElapsed: 22, droppedRequests: 1, retryAfter: 10},
    	}
    
    	for i, step := range steps {
    		secondsToAdvance := step.secondsElapsed
    		if i > 0 {
    			secondsToAdvance -= steps[i-1].secondsElapsed
    		}
    		fakeClock.Step(time.Duration(secondsToAdvance) * time.Second)
    
    		// Record all droppeded requests and recompute retryAfter.
    		for r := 0; r < step.droppedRequests; r++ {
    			tracker.RecordDroppedRequest("pl")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    istio_requests_total{reporter=\"source\"}[1m])), 0.001)","intervalFactor":1,"refId":"A","step":4}],"title":"Global Request Volume","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"rgb(31, 120, 193)","mode":"fixed"},"mappings":[{"options":{"match":"null","result":{"text":"N/A"}},"type":"special"}],"thresholds":{"mode":"absolute","steps":[{"color":"rgba(245, 54, 54, 0.9)","value":null},{"color":"rgba(237, 129, 40, 0.89)","va...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    	for i, step := range steps {
    		resetCalled()
    
    		t.Run(fmt.Sprintf("[%v]", i), func(t *testing.T) {
    			g := NewWithT(t)
    
    			switch {
    			case step.added != nil:
    				_, err := cms.Create(context.TODO(), step.added, metav1.CreateOptions{})
    				g.Expect(err).Should(BeNil())
    			case step.updated != nil:
    				_, err := cms.Update(context.TODO(), step.updated, metav1.UpdateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-service-dashboard.json

                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-performance-dashboard.json

                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/istio-workload-dashboard.json

                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ChoosePipelineStep.java

     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.ImmutableUnitOfWork;
    import org.gradle.internal.execution.MutableUnitOfWork;
    import org.gradle.internal.execution.UnitOfWork;
    
    public class ChoosePipelineStep<C extends IdentityContext, R extends Result> implements Step<C, R> {
    
        private final Step<? super IdentityContext, ? extends R> immutablePipeline;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. manifests/charts/UPDATING-CHARTS.md

    This will regenerate the Go structs used for schema validation.
    
    ## Step 4. Update the generated manifests
    
    Tests of istioctl use the auto-generated manifests to ensure that the istioctl binary has the correct version of the charts.
    To regenerate the manifests, run:
    
    ```bash
    $ make copy-templates update-golden
    ```
    
    ## Step 5. Create a PR using outputs from Steps 1 to 4
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top