Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for Test3 (0.05 sec)

  1. test/fixedbugs/issue8613.go

    package main
    
    var out int
    var zero int
    
    func main() {
    	wantPanic("test1", func() {
    		out = 1 / zero
    	})
    	wantPanic("test2", func() {
    		_ = 1 / zero
    	})
    	wantPanic("test3", func() {
    		v := 0
    		_ = 1 / v
    	})
    	wantPanic("test4", func() { divby(0) })
    }
    
    func wantPanic(test string, fn func()) {
    	defer func() {
    		if e := recover(); e == nil {
    			panic(test + ": expected panic")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 23 22:01:32 UTC 2016
    - 608 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_test_race_issue56370.txt

    import (
    	"testing"
    
    	"issue.56370/filter"
    )
    
    func Test1(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test2(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test3(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test4(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 19:41:54 UTC 2022
    - 576 bytes
    - Viewed (0)
  3. test/fixedbugs/issue4585.go

    	if a != b {
    		panic("broken equality: a != b")
    	}
    
    	m[a] = 1
    	m[b] = 2
    	if len(m) == 2 {
    		panic("broken hash: len(m) == 2")
    	}
    	if m[a] != 2 {
    		panic("m[a] != 2")
    	}
    }
    
    func test3() {
    	var a, b USmall
    	copy((*[12]byte)(unsafe.Pointer(&a))[:], "hello world!")
    	a.A, a.B = 1, 2
    	b.A, b.B = 1, 2
    	if a != b {
    		panic("broken equality: a != b")
    	}
    }
    
    func test4() {
    	var a, b V
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5470.dir/a.go

    type tst1 map[string]bool
    
    func (r tst1) Hi() string { return "Hi!" }
    
    func Test2() Foo { return make(tst2, 0) }
    
    type tst2 []string
    
    func (r tst2) Hi() string { return "Hi!" }
    
    func Test3() Foo { return make(tst3) }
    
    type tst3 chan string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 07:01:43 UTC 2013
    - 532 bytes
    - Viewed (0)
  5. test/ken/chan.go

    	changeNproc(4)
    	go send(ca[0])
    	go send(ca[1])
    	go send(ca[2])
    	go send(ca[3])
    
    	changeNproc(1)
    	go sel(ca[0], ca[1], ca[2], ca[3], nc, nc, nc, nc)
    }
    
    // select send to direct recv
    func test3(c int) {
    	ca := mkchan(c, 4)
    
    	changeNproc(4)
    	go recv(ca[0])
    	go recv(ca[1])
    	go recv(ca[2])
    	go recv(ca[3])
    
    	changeNproc(1)
    	go sel(nc, nc, nc, nc, ca[0], ca[1], ca[2], ca[3])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

            m1.pom.expectGetMissing()
            def m2 = mavenHttpRepo.module("test", "test2", "1.2")
            m2.pom.expectGetUnauthorized()
            def m3 = mavenHttpRepo.module("test", "test3", "1.2").publish()
            m3.pom.expectGet()
    
            fails("show")
    
            then:
            failure.assertHasDescription("Execution failed for task ':show'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. test/typeparam/geninline.dir/a.go

    	val T
    }
    
    //go:noinline
    func (l *privateVal[T]) check(want T) {
    	if l.val != want {
    		panic("hi")
    	}
    }
    
    type Outer struct {
    	val privateVal[string]
    }
    
    func Test3() {
    	var o Outer
    	o.val.check("")
    	_ = IVal[string](&o.val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 15 16:57:36 UTC 2021
    - 799 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/misc/DisposableUtilTest.java

            assertThat(count, is(2));
            assertThat(names, is("ba"));
            assertThat(DisposableUtil.disposables.size(), is(0));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void test3() throws Exception {
            DisposableUtil.add(new TestDisposable("a"));
            DisposableUtil.add(new TestDisposable2());
            DisposableUtil.add(new TestDisposable("b"));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue5755.dir/a.go

    func (f foo6) F() { return }
    func (f foo7) F() { return }
    func (f foo8) F() { return }
    func (f foo9) F() { return }
    
    func Test1(s string) I  { return foo1(s) }
    func Test2(s string) I  { return foo2(s) }
    func Test3(s string) I  { return foo3(s) }
    func Test4(s string) I  { return foo4(s) }
    func Test5(s []byte) I  { return foo5(s) }
    func Test6(s []rune) I  { return foo6(s) }
    func Test7(s []uint8) I { return foo7(s) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 28 21:29:13 UTC 2013
    - 1.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4053</groupId>
      <artifactId>test3</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top