Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 444 for step2 (4.59 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    func newAdmissionMetrics() *AdmissionMetrics {
    	// Admission metrics for a step of the admission flow. The entire admission flow is broken down into a series of steps
    	// Each step is identified by a distinct type label value.
    	// Use buckets ranging from 5 ms to 2.5 seconds.
    	step := &metricSet{
    		latencies: metrics.NewHistogramVec(
    			&metrics.HistogramOpts{
    				Namespace:      namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo_test.go

    		"not enough steps":             {"/api/version", false},
    		"one step":                     {"/api", false},
    		"zero step":                    {"/", false},
    		"empty":                        {"", false},
    	}
    
    	resolver := newTestRequestInfoResolver()
    
    	for testName, tc := range tests {
    		req, _ := http.NewRequest("GET", tc.url, nil)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 12:19:21 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    An alternative would be to look ahead to how well n/2 divides into n+m and
    adjust the first step to use fewer digits as needed, making the first step
    more special to make the last step not special at all. For example, using the
    same input, we could choose to use only 4 digits in the first step, leaving
    a full wide digit for the last step:
    
    	                       q₆ q₅ q₄ q₃ q₂ q₁ q₀
    	            _______________________________
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    image::ci-systems/github-actions-workflow.png[View workflow execution details]
    
    === View the details for Jobs and Steps in the workflow
    
    Finally, you can view the logs for the individual workflow Jobs and each Step defined for a Job:
    
    image::ci-systems/github-actions-job-details.png[View workflow job details]
    
    == Enable caching of downloaded artifacts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-build-step.png

    teamcity-build-step.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  9. architecture/environments/operator.md

    resulting CR is converted to Helm values.yaml format and passed to the next step.
    1. Part of the configuration profile contains settings in the Helm values.yaml schema format. User overrides of
    these fields are applied and merged with the output of this step. The result of this step is a merge of configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    .Installing manually
    [%collapsible]
    ====
    
    **Step 1 - link:{website}/releases[Download] the latest Gradle distribution**
    
    The distribution ZIP file comes in two flavors:
    
    - Binary-only (bin)
    - Complete (all) with docs and sources
    
    We recommend downloading the bin file; it is a smaller file that is quick to download (and the latest documentation is available online).
    
    **Step 2 - Unpack the distribution**
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top