Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 608 for nDests (0.07 sec)

  1. src/testing/testing.go

    		rng := rand.New(rand.NewSource(n))
    		rng.Shuffle(len(m.tests), func(i, j int) { m.tests[i], m.tests[j] = m.tests[j], m.tests[i] })
    		rng.Shuffle(len(m.benchmarks), func(i, j int) { m.benchmarks[i], m.benchmarks[j] = m.benchmarks[j], m.benchmarks[i] })
    	}
    
    	parseCpuList()
    
    	m.before()
    	defer m.after()
    
    	// Run tests, examples, and benchmarks unless this is a fuzz worker process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // Valgrind heap checkers may need this to modify their behavior in death
    // tests.  IMPORTANT: This is an internal utility.  Using it may break the
    // implementation of death tests.  User code MUST NOT use it.
    GTEST_API_ bool InDeathTestChild();
    
    }  // namespace internal
    
    // The following macros are useful for writing death tests.
    
    // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
    // executed:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/util/cmdutil_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			actualResult := GetKubeConfigPath(tt.file)
    			if actualResult != tt.expected {
    				t.Errorf(
    					"failed GetKubeConfigPath:\n\texpected: %s\n\t  actual: %s",
    					tt.expected,
    					actualResult,
    				)
    			}
    		})
    	}
    }
    
    func TestValueFromFlagsOrConfig(t *testing.T) {
    	var tests = []struct {
    		name      string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. docs/es/docs/deployment/versions.md

    Para esto es recomendable primero añadir tests a tu aplicación.
    
    Con **FastAPI** es muy fácil (gracias a Starlette), revisa la documentación [Testing](../tutorial/testing.md){.internal-link target=_blank}
    
    Luego de tener los tests, puedes actualizar la versión de **FastAPI** a una más reciente y asegurarte de que tu código funciona correctamente ejecutando los tests.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

            **/build/distributions/*.zip => promote-build-distributions
            **/build/website-checkout/data/releases.xml
            **/build/git-checkout/build/reports/integTest/** => distribution-tests
            **/smoke-tests/build/reports/tests/** => post-smoke-tests
            **/build/version-info.properties => version-info.properties
            """.trimIndent()
    
            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    //    * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual
    //    * {ASSERT|EXPECT}_NE(v1, v2):           Tests that v1 != v2
    //    * {ASSERT|EXPECT}_LT(v1, v2):           Tests that v1 < v2
    //    * {ASSERT|EXPECT}_LE(v1, v2):           Tests that v1 <= v2
    //    * {ASSERT|EXPECT}_GT(v1, v2):           Tests that v1 > v2
    //    * {ASSERT|EXPECT}_GE(v1, v2):           Tests that v1 >= v2
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

        }
    
        TestClassExecutionResult assertTestCount(int tests, int failures, int errors) {
            assert testClassNode.@tests == tests
            assert testClassNode.@failures == failures
            assert testClassNode.@errors == errors
            this
        }
    
        TestClassExecutionResult assertTestCount(int tests, int skipped, int failures, int errors) {
            assert testClassNode.@tests == tests
            assert testClassNode.@skipped == skipped
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tls_test.go

    )
    
    func TestMatchTLS(t *testing.T) {
    	type args struct {
    		match       *v1alpha3.TLSMatchAttributes
    		proxyLabels labels.Instance
    		gateways    sets.String
    		port        int
    		namespace   string
    	}
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{
    			"source namespace match",
    			args{
    				match: &v1alpha3.TLSMatchAttributes{
    					SourceNamespace: "foo",
    				},
    				namespace: "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/telemetry.txt

    # Tests for the telemetry subcommand,
    
    # The script test framework sets TEST_TELEMETRY_DIR (overriding the
    # default telemetry dir location) and then checks that at least one
    # counter has been written per script tests.
    # Run go before unsetting TEST_TELEMETRY_DIR to make the tests happy.
    # We want to unset it so the environment we're testing is as close
    # to a user's environment.
    go help telemetry
    env TEST_TELEMETRY_DIR=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/certlist_test.go

    )
    
    func TestCertListOrder(t *testing.T) {
    	tests := []struct {
    		certs Certificates
    		name  string
    	}{
    		{
    			name:  "Default Certificate List",
    			certs: GetDefaultCertList(),
    		},
    		{
    			name:  "Cert list less etcd",
    			certs: GetCertsWithoutEtcd(),
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			var lastCA *KubeadmCert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top