Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 860 for incorrectly (0.3 sec)

  1. test/fixedbugs/issue51475.go

    // compile
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gofrontend incorrectly gave an error for this code.
    
    package p
    
    type B bool
    
    func main() {
    	var v B = false
    	if (true && true) && v {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 16:57:18 UTC 2022
    - 314 bytes
    - Viewed (0)
  2. test/fixedbugs/issue11359.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // identifiers beginning with non-ASCII digits were incorrectly accepted.
    // issue 11359.
    
    package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 20:38:42 UTC 2015
    - 333 bytes
    - Viewed (0)
  3. test/fixedbugs/issue32175.go

    // run
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This used to print 0, because x was incorrectly captured by value.
    
    func f() (x int) {
    	defer func() func() {
    		return func() {
    			println(x)
    		}
    	}()()
    	return 42
    }
    
    func main() {
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:43:09 UTC 2019
    - 373 bytes
    - Viewed (0)
  4. releasenotes/notes/dr-san-validation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 40801
    releaseNotes:
    - |
      **Fixed** an issue with where a `DestinationRule` applying to multiple services could incorrectly apply an unexpected `subjectAltNames` field.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 08 17:32:33 UTC 2022
    - 357 bytes
    - Viewed (0)
  5. test/fixedbugs/issue21934.go

    // errorcheck
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // selector expression resolves incorrectly for defined
    // pointer types.
    
    package main
    
    type E struct{ f int }
    type T struct{ E }
    
    func (*T) f() int { return 0 }
    
    type P *T
    type PP **T
    
    func main() {
    	var x P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 18:34:18 UTC 2019
    - 541 bytes
    - Viewed (0)
  6. test/fixedbugs/issue7590.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 7590: gccgo incorrectly traverses nested composite literals.
    
    package p
    
    type S struct {
    	F int
    }
    
    var M = map[string]S{
    	"a": { F: 1 },
    }
    
    var P = M["a"]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 349 bytes
    - Viewed (0)
  7. test/fixedbugs/bug488.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gccgo compiler had a bug: if one file in a package did a dot
    // import, then an earlier file in the package would incorrectly
    // resolve to the imported names rather than reporting undefined
    // errors.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 404 bytes
    - Viewed (0)
  8. test/fixedbugs/bug438.go

    // compile
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo used to incorrectly give an error when compiling this.
    
    package p
    
    func F() (i int) {
    	for first := true; first; first = false {
    		i++
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 04 20:14:09 UTC 2012
    - 329 bytes
    - Viewed (0)
  9. test/fixedbugs/issue4545.go

    // errorcheck
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4545: untyped constants are incorrectly coerced
    // to concrete types when used in interface{} context.
    
    package main
    
    import "fmt"
    
    func main() {
    	var s uint
    	fmt.Println(1.0 + 1<<s) // ERROR "invalid operation|non-integer type|incompatible type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 511 bytes
    - Viewed (0)
  10. test/fixedbugs/issue22781.go

    }
    
    func main() {
    	debug.SetGCPercent(1)
    	for i := 0; i < 100000; i++ {
    		m := make(map[*T]struct{}, 0)
    		for j := 0; j < 20; j++ {
    			// During the call to mapassign_fast64, the key argument
    			// was incorrectly treated as a uint64. If the stack was
    			// scanned during that call, the only pointer to k was
    			// missed, leading to *k being collected prematurely.
    			k := new(T)
    			m[k] = struct{}{}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 04:30:27 UTC 2017
    - 680 bytes
    - Viewed (0)
Back to top