Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 800 for bug5 (0.03 sec)

  1. test/fixedbugs/bug096.go

    package main
    
    type A []int;
    
    func main() {
    	a := &A{0};
    	b := &A{0, 1};
    	_, _ = a, b;
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug096.go && 6l bug096.6 && 6.out
    Trace/BPT trap
    uetli:~/Source/go1/test/bugs gri$
    */
    
    /*
    It appears that the first assignment changes the size of A from open
    into a fixed array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 483 bytes
    - Viewed (0)
  2. test/fixedbugs/bug094.go

    func f1() {
    	x := 0;
    	_ = x;
    }
    
    
    func main() {
    	f0();
    	f1();
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug094.go && 6l bug094.6 && 6.out
    bug094.go:11: left side of := must be a name
    bad top
    .   LITERAL-I0 l(343)
    bug094.go:11: fatal error: walktype: top=3 LITERAL
    uetli:~/Source/go1/test/bugs gri$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 517 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_path.txt

    import "C"
    
    -- p/gcc --
    #!/bin/sh
    echo ran gcc >bug.txt
    -- p/clang --
    #!/bin/sh
    echo ran clang >bug.txt
    -- p/gcc.bat --
    echo ran gcc >bug.txt
    -- p/clang.bat --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:09:07 UTC 2023
    - 952 bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug_report.md

    ---
    name: Bug report
    about: Create a report to help us improve
    title: ''
    labels: bug
    assignees: ''
    
    ---
    
    (_Please see [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/8) before filing a bug._)
    
    **Describe the bug**
    A clear and concise description of what the bug is.
    
    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Feb 10 22:19:06 UTC 2020
    - 749 bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

       * {@link java.util.TreeMap} can suppress it with {@code
       * FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5045147">Sun bug 5045147</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getPutNullKeyUnsupportedMethod() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue7863.go

    	foo := Foo(123)
    	f := foo.F
    	if foo.F() != f() {
    		bug()
    		fmt.Println("foo.F", foo.F(), f())
    	}
    	bar := Bar(123)
    	f = bar.F
    	if bar.F() != f() {
    		bug()
    		fmt.Println("bar.F", bar.F(), f()) // duh!
    	}
    
    	baz := Baz(123)
    	f = baz.F
    	if baz.F() != f() {
    		bug()
    		fmt.Println("baz.F", baz.F(), f())
    	}
    }
    
    var bugged bool
    
    func bug() {
    	if !bugged {
    		bugged = true
    		fmt.Println("BUG")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 790 bytes
    - Viewed (0)
  7. test/fixedbugs/bug258.go

    	math.Pow(2, 2)
    	return 1
    }
    
    func main() {
    	for i := 0; i < 10; i++ {
    		// 386 float register bug used to load constant before call
    		if -5 < f() {
    		} else {
    			println("BUG 1")
    			return
    		}
    		if f() > -7 {
    		} else {
    			println("BUG 2")
    		}
    		
    		if math.Pow(2, 3) != 8 {
    			println("BUG 3")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 519 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/bug_report.md

    ---
    name: Bug report
    about: A reproducible problem
    title: ''
    labels: bug
    assignees: ''
    
    ---
    
    Good bug reports include a failing test! Writing a test helps you to isolate and describe the problem, and it helps us to fix it fast. Bug reports without a failing test or reproduction steps are likely to be closed.
    
    Here’s an example test to get you started.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 30 22:44:40 UTC 2018
    - 412 bytes
    - Viewed (0)
  9. test/fixedbugs/bug356.go

    	var i uint64
    	var x int = 12345
    
    	if y := x << (i&5); y != 12345<<0 {
    		println("BUG bug344", y)
    		return
    	}
    	
    	i++
    	if y := x << (i&5); y != 12345<<1 {
    		println("BUG bug344a", y)
    	}
    	
    	i = 70
    	if y := x << i; y != 0 {
    		println("BUG bug344b", y)
    	}
    	
    	i = 1<<32
    	if y := x << i; y != 0 {
    		println("BUG bug344c", y)
    	}
    }
    	
    
    /*
    typecheck [1008592b0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 678 bytes
    - Viewed (0)
  10. test/const4.go

    		println("BUG:", n1, n2, n3, n4, n5, n6, n7)
    		panic("fail")
    	}
    	if !calledF {
    		println("BUG: did not call f")
    		panic("fail")
    	}
    	if <-c == nil {
    		println("BUG: did not receive from c")
    		panic("fail")
    	}
    	if !calledG {
    		println("BUG: did not call g")
    		panic("fail")
    	}
    	if <-c1 == nil {
    		println("BUG: did not receive from c1")
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 1.3K bytes
    - Viewed (0)
Back to top