Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,277 for caused (0.14 sec)

  1. test/fixedbugs/bug515.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.
    
    // Caused a gofrontend crash.
    
    //go:build gccgo
    
    package p
    
    //go:notinheap
    type S1 struct{}
    
    type S2 struct {
    	r      interface{ Read([]byte) (int, error) }
    	s1, s2 []byte
    	p      *S1
    	n      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 06:22:23 UTC 2022
    - 392 bytes
    - Viewed (0)
  2. test/fixedbugs/issue44465.go

    // compile -d=ssa/check/seed
    
    // Copyright 2021 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.
    
    // This code caused an internal consistency error due to a bad shortcircuit optimization.
    
    package p
    
    func f() {
    	var b bool
    	if b {
    		b = true
    	}
    l:
    	for !b {
    		b = true
    		goto l
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 22 20:27:09 UTC 2021
    - 375 bytes
    - Viewed (0)
  3. releasenotes/notes/cni-no-sh.yaml

        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
  4. test/fixedbugs/gcc61204.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.
    
    // PR61204: Making temporaries for zero-sized types caused an ICE in gccgo.
    // This is a reduction of a program reported by GoSmith.
    
    package main
    
    func main() {
    	type t [0]int
    	var v t
    	v, _ = [0]int{}, 0
    	_ = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 387 bytes
    - Viewed (0)
  5. test/fixedbugs/issue38698.go

    // compile
    
    // Copyright 2021 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.
    
    // This test case caused a panic in the compiler's DWARF gen code.
    
    package p
    
    func ff( /*line :10*/ x string) bool {
    	{
    		var _ /*line :10*/, x int
    		_ = x
    	}
    	return x == ""
    }
    
    
    func h(a string) bool {
    	return ff(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 22 20:00:00 UTC 2021
    - 393 bytes
    - Viewed (0)
  6. test/fixedbugs/issue22327.go

    // license that can be found in the LICENSE file.
    
    // Using a multi-result function as an argument to
    // append should compile successfully. Previously there
    // was a missing *int -> interface{} conversion that caused
    // the compiler to ICE.
    
    package p
    
    func f() ([]interface{}, *int) {
    	return nil, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 22 17:30:57 UTC 2018
    - 448 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

          > Dependency resolution is looking for a library compatible with JVM runtime version $currentJava, but 'project :producer' is only compatible with JVM runtime version $tooHighJava or newer.""")
            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
            failure.assertHasResolution("Change the dependency on 'project :producer' to an earlier version that supports JVM runtime version $tooHighJava.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (1)
  8. test/fixedbugs/issue29610.go

    // rundir
    
    // Copyright 2018 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 29610: Symbol import and initialization order caused function
    // symbols to be recorded as non-function symbols.
    
    // This uses rundir not because we actually want to run the final
    // binary, but because we need to at least link it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 11 00:45:49 UTC 2019
    - 429 bytes
    - Viewed (0)
  9. test/fixedbugs/bug304.go

    // compile
    
    // Copyright 2010 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.
    
    // Caused a gccgo crash on compilation.
    // bug304.go: In function ‘p.f’:
    // bug304.go:15:2: internal compiler error: in copy_tree_r, at tree-inline.c:4114
    
    package p
    type S struct {
    	v interface{}
    }
    func g(e interface{}) { }
    func f(s S) {
    	g(s.v.(*int))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 432 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_run_flags_issue64738.txt

    # Regression test for https://go.dev/issue/64738:
    # a bug in 'go run' caused flags arguments after the requested package to
    # also be parsed as cmd/go flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:08:32 UTC 2024
    - 211 bytes
    - Viewed (0)
Back to top