Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for testF (1.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // Functions producing parameter generators.
    //
    // Google Test uses these generators to produce parameters for value-
    // parameterized tests. When a parameterized test case is instantiated
    // with a particular generator, Google Test creates and runs tests
    // for each element in the sequence produced by the generator.
    //
    // In the following sample, tests from test case FooTest are instantiated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            assertFalse(htmlTransformer.isValidPath(value));
        }
    
        public void test_encodeUrl_valid() {
            String url = "http://TEST.com/hoge/;jsessionid?p=id&test=ใƒ†ใ‚นใƒˆ&u=18718&v=123%3d#test";
            String result = "http://TEST.com/hoge/;jsessionid?p=id&test=%E3%83%86%E3%82%B9%E3%83%88&u=18718&v=123%3d#test";
            assertEquals(result, htmlTransformer.encodeUrl(url, "UTF-8"));
    
            url = ".-*_:/+%=&?#[]@~!$'(),;";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // Functions producing parameter generators.
    //
    // Google Test uses these generators to produce parameters for value-
    // parameterized tests. When a parameterized test case is instantiated
    // with a particular generator, Google Test creates and runs tests
    // for each element in the sequence produced by the generator.
    //
    // In the following sample, tests from test case FooTest are instantiated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

                }
                tasks.named('test') {
                    useJUnitPlatform()
                }
            """
            file("src/test/groovy/BaseTest.groovy").text = """
                import spock.lang.Specification
                class BaseTest extends Specification {}
            """
            file("src/test/groovy/UnrelatedClass.groovy").text = "class UnrelatedClass {}"
            file("src/test/groovy/AppTest.groovy").text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

    }
    """
    
            when:
            m1.ivy.expectGet()
            m1.jar.expectGet()
            run 'show'
    
            then:
            outputContains("files: [test-lib.jar, transformed-a1.jar, transformed-b2.jar, test-1.0.jar]")
            outputContains("components: [test-lib.jar, project :lib, project :ui, org:test:1.0]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            builder = artifactBuilder()
            builder.sourceFile("org/gradle/test/BuildClass.java").text = originalSourceFile.text.replace("test.properties", "test2.properties")
            builder.resourceFile("org/gradle/test/test2.properties").createFile().text = "text=hello again"
            builder.resourceFile("org/gradle/test/test.properties").delete()
            builder.buildJar(jarFile)
    
            then:
            succeeds("hello")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.png

    java-library-ignore-deprecated-test.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    					Rule:       v1.Rule{APIGroups: []string{"*"}, APIVersions: []string{"*"}, Resources: []string{"*"}, Scope: &allScopes},
    				}},
    				MatchConditions: []v1.MatchCondition{
    					{
    						Name:       "test1",
    						Expression: "test expression",
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  9. plugin/pkg/admission/imagepolicy/admission_test.go

    		{
    			test: "image-policy annotations allowed",
    			annotations: map[string]string{
    				"my.image-policy.k8s.io/test":     "test",
    				"other.image-policy.k8s.io/test2": "annotation",
    				"test":                            "test",
    				"another":                         "another",
    				"":                                "",
    			},
    			outAnnotations: map[string]string{
    				"my.image-policy.k8s.io/test":     "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  10. src/crypto/hmac/hmac_test.go

    }
    
    // justHash implements just the hash.Hash methods and nothing else
    type justHash struct {
    	hash.Hash
    }
    
    func TestEqual(t *testing.T) {
    	a := []byte("test")
    	b := []byte("test1")
    	c := []byte("test2")
    
    	if !Equal(b, b) {
    		t.Error("Equal failed with equal arguments")
    	}
    	if Equal(a, b) {
    		t.Error("Equal accepted a prefix of the second argument")
    	}
    	if Equal(b, a) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
Back to top