Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 154 for IsSkip (0.12 sec)

  1. src/fmt/fmt_test.go

    	}},
    }
    
    var _ bytes.Buffer
    
    func TestCountMallocs(t *testing.T) {
    	switch {
    	case testing.Short():
    		t.Skip("skipping malloc count in short mode")
    	case runtime.GOMAXPROCS(0) > 1:
    		t.Skip("skipping; GOMAXPROCS>1")
    	case race.Enabled:
    		t.Skip("skipping malloc count under race detector")
    	}
    	for _, mt := range mallocTest {
    		mallocs := testing.AllocsPerRun(100, mt.fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // DeploymentRollback or a PodProxyOptions object) is not considered to
      // match.
      // Use the object selector only if the webhook is opt-in, because end
      // users may skip the admission webhook by setting the labels.
      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector objectSelector = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	t.Run("TLSv13", func(t *testing.T) { testResumption(t, VersionTLS13) })
    }
    
    func testResumption(t *testing.T, version uint16) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	serverConfig := &Config{
    		MaxVersion:   version,
    		CipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA, TLS_ECDHE_RSA_WITH_RC4_128_SHA},
    		Certificates: testConfig.Certificates,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    			return nil
    		}
    		job := jm.resolveControllerRef(sharedPod.Namespace, controllerRef)
    		if job != nil {
    			// Skip cleanup of finalizers for pods owned by a job managed by an external controller
    			if controllerName := managedByExternalController(job); controllerName != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // DeploymentRollback or a PodProxyOptions object) is not considered to
      // match.
      // Use the object selector only if the webhook is opt-in, because end
      // users may skip the admission webhook by setting the labels.
      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector objectSelector = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				}
    			}
    			// Initialization failed or still in progress. Skip inspecting non-init
    			// containers.
    			return changes
    		}
    	} else {
    		hasInitialized := m.computeInitContainerActions(pod, podStatus, &changes)
    		if changes.KillPod || !hasInitialized {
    			// Initialization failed or still in progress. Skip inspecting non-init
    			// containers.
    			return changes
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	{0, `time.Now().UnixMicro()`, func() { u = Now().UnixMicro() }},
    }
    
    func TestCountMallocs(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	for _, mt := range mallocTest {
    		allocs := int(testing.AllocsPerRun(100, mt.fn))
    		if allocs > mt.count {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Skipping the unit tests based on a project property
    ====
    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=skip-tests-condition]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=skip-tests-condition]"]
    ====
    
    In this case, Gradle will mark the skipped tests as "SKIPPED" rather than exclude them from the build.
    
    [[sec:forcing_java_tests_to_run]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    		Trim(x, " ")
    	}
    }
    
    func BenchmarkIndexPeriodic(b *testing.B) {
    	key := []byte{1, 1}
    	for _, skip := range [...]int{2, 4, 8, 16, 32, 64} {
    		b.Run(fmt.Sprintf("IndexPeriodic%d", skip), func(b *testing.B) {
    			buf := make([]byte, 1<<16)
    			for i := 0; i < len(buf); i += skip {
    				buf[i] = 1
    			}
    			for i := 0; i < b.N; i++ {
    				Index(buf, key)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// delete) or an object that cannot have labels (like a
    	// DeploymentRollback or a PodProxyOptions object) is not considered to
    	// match.
    	// Use the object selector only if the webhook is opt-in, because end
    	// users may skip the admission webhook by setting the labels.
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top