Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for TestV3 (0.12 sec)

  1. src/cmd/internal/pkgpath/pkgpath_test.go

    func TestV2(t *testing.T) {
    	for _, test := range symbolTests {
    		if got, want := toSymbolV2(test.input), test.v2; got != want {
    			t.Errorf("toSymbolV2(%q) = %q, want %q", test.input, got, want)
    		}
    	}
    }
    
    func TestV3(t *testing.T) {
    	for _, test := range symbolTests {
    		if got, want := toSymbolV3(test.input), test.v3; got != want {
    			t.Errorf("toSymbolV3(%q) = %q, want %q", test.input, got, want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 18:26:59 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/test/resources/test/dir1/test3.txt

    test3...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/test/dir1/test3.txt

    test3...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
  4. test/recover.go

    	defer mustRecover(2)
    	defer recover() // should be no-op
    	panic(2)
    }
    
    func test3() {
    	defer mustNotRecover()
    	defer func() {
    		recover() // should squelch
    	}()
    	panic(3)
    }
    
    func test4() {
    	// Equivalent to test3 but using defer to make the call.
    	defer mustNotRecover()
    	defer func() {
    		defer recover() // should squelch
    	}()
    	panic(4)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/vendor_complex.txt

    import (
    	"v1"
    	"v2"
    )
    
    const x = v1.ComplexNestVendorV1
    const y = v2.ComplexNestSubVendorV2
    
    -- complex/nest/sub/test23/p.go --
    package test23
    
    // Check that vendor/v3 is used but vendor/v2 is NOT used (sub/vendor/v2 wins).
    
    import (
    	"v2"
    	"v3"
    )
    
    const x = v3.ComplexNestVendorV3
    const y = v2.ComplexNestSubVendorV2
    
    -- complex/nest/sub/vendor/v2/v2.go --
    package v2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedFileOrderingIntegrationTest.groovy

            outputContains("files 3: [test-lib.jar, a.jar, a-lib.jar, b.jar, b-lib.jar, c.jar, c-lib.jar, test-1.0.jar, test-1.0-from-main.jar, test-1.0-from-a.jar, test-1.0-from-c.jar, test2-1.0.jar, test3-1.0.jar]")
            outputContains("files 4: [test-lib.jar, a.jar, a-lib.jar, b.jar, b-lib.jar, c.jar, c-lib.jar, test-1.0.jar, test-1.0-from-main.jar, test-1.0-from-a.jar, test-1.0-from-c.jar, test2-1.0.jar, test3-1.0.jar]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testPut() throws Exception {
            assertThat(map.put("1", "test3"), is("test"));
            assertThat(map.get("1"), is("test3"));
            assertThat(map.getAt(1), is("test3"));
            map.put(null, "test4");
            map.put(null, "test5");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testRemove() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

            def defaultToolChain2 = availableToolChain("test2")
            def defaultToolChain3 = availableToolChain("test3")
    
            when:
            registry.registerDefaultToolChain("test1", TestNativeToolChain)
            registry.registerDefaultToolChain("test2", TestNativeToolChain)
            registry.registerDefaultToolChain("test3", TestNativeToolChain)
            registry.addDefaultToolChains()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. test/fixedbugs/bug286.go

    		println("test2 called", callee)
    		error_ = true
    	}
    }
    
    type J interface {
    	g()
    	I
    }
    
    func test3(x I) {
    	x.(J).f()
    	if callee != "f" {
    		println("test3 called", callee)
    		error_ = true
    	}
    }
    
    func main() {
    	x := new(T)
    	test1(x)
    	test2(x)
    	test3(x)
    	if error_ {
    		panic("wrong method called")
    	}
    }
    
    /*
    6g bug286.go && 6l bug286.6 && 6.out
    test2 called g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestReportTest.groovy

            def test1 = test("test1")
            def test2 = test("test2")
            def test3 = test("test3")
    
            when:
            reportTask.testResults.from(test1.binaryResultsDirectory)
            reportTask.testResults.from([[test2.binaryResultsDirectory], test3.binaryResultsDirectory])
    
            then:
            reportTask.testResults.files as List == [test1, test2, test3]*.binaryResultsDirectory*.getAsFile()*.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top