Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,347 for TestAs (0.35 sec)

  1. pkg/test/framework/integration/framework_test.go

    		},
    	}
    }
    
    type level struct {
    	name string
    
    	// branchFactor indicates how the parent should branch for this level
    	// (i.e. how many child tests should be created per parent test in the previous level).
    	branchFactor int
    
    	// runParallel if true, all tests in this level will be run in parallel.
    	runParallel bool
    }
    
    func (l level) runParallelString() string {
    	if l.runParallel {
    		return "parallel"
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_COMBINE      - the Combine() function (for value-parameterized
    //                            tests)
    //   GTEST_HAS_DEATH_TEST   - death tests
    //   GTEST_HAS_PARAM_TEST   - value-parameterized tests
    //   GTEST_HAS_TYPED_TEST   - typed tests
    //   GTEST_HAS_TYPED_TEST_P - type-parameterized tests
    //   GTEST_USES_POSIX_RE    - enhanced POSIX regex is used. Do not confuse with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/query-params.md

    # Parámetros de query
    
    Cuando declaras otros parámetros de la función que no hacen parte de los parámetros de path estos se interpretan automáticamente como parámetros de "query".
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params/tutorial001.py!}
    ```
    
    El query es el conjunto de pares de key-value que van después del `?` en la URL, separados por caracteres `&`.
    
    Por ejemplo, en la URL:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. docs/pl/docs/help-fastapi.md

    * Jeśli jesteś wyjątkowo pomocny, możesz spróbować **stworzyć taki przykład** samodzielnie, opierając się tylko na opisie problemu. Miej na uwadze, że może to zająć dużo czasu i lepiej może być najpierw poprosić ich o wyjaśnienie problemu.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. docs/es/docs/deployment/index.md

    Esto difiere en las fases de **desarrollo**, donde estás constantemente cambiando el código, rompiéndolo y arreglándolo, deteniendo y reiniciando el servidor de desarrollo, etc.
    
    ## Estrategias de despliegue
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts

    plugins {
        id("gradlebuild.integration-tests")
    }
    
    tasks.withType<IntegrationTest>().configureEach {
        // See AbstractKotlinIntegrationTest
        "kotlinDslTestsExtraRepo".let {
            systemProperty(it, System.getProperty(it))
        }
    }
    
    dependencies {
        integTestRuntimeOnly(project(":kotlin-dsl-plugins")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 720 bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_test.go

    			},
    			podFunc: func() *api.Pod {
    				podUID := types.UID(fmt.Sprintf("%08X", rand.Uint64()))
    				return &api.Pod{ObjectMeta: meta.ObjectMeta{UID: podUID, Namespace: testns}}
    			},
    			findPluginShouldFail: true,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			tmpDir, err := utiltesting.MkTmpdir("csi-test")
    			if err != nil {
    				t.Fatalf("can't create temp dir: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  8. src/context/context_test.go

    	Name() string
    	Parallel()
    	Skip(args ...any)
    	SkipNow()
    	Skipf(format string, args ...any)
    	Skipped() bool
    }
    
    const veryLongDuration = 1000 * time.Hour // an arbitrary upper bound on the test's running time
    
    func contains(m map[canceler]struct{}, key canceler) bool {
    	_, ret := m[key]
    	return ret
    }
    
    func XTestParentFinishesChild(t testingT) {
    	// Context tree:
    	// parent -> cancelChild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    // - works for pass through filter chains
    func TestTrustDomainValidation(t *testing.T) {
    	framework.NewTest(t).Run(
    		func(ctx framework.TestContext) {
    			testNS := apps.EchoNamespace.Namespace
    
    			ctx.ConfigIstio().YAML(testNS.Name(), fmt.Sprintf(policy, testNS.Name())).ApplyOrFail(ctx)
    
    			trustDomains := map[string]struct {
    				cert string
    				key  string
    			}{
    				"foo": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

    import static org.gradle.testing.fixture.JUnitCoverage.LATEST_PLATFORM_VERSION
    import static org.hamcrest.CoreMatchers.containsString
    
    /**
     * Tests the state of the application classpath in the forked test process to ensure the correct
     * test framework dependencies are exposed to the user's test code. Additionally tests environmental
     * state like system properties, and environment variables.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top