Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,277 for caused (0.25 sec)

  1. src/cmd/go/testdata/script/mod_getx.txt

    [!net:golang.org] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get -x' should log URLs with an HTTP or HTTPS scheme.
    # A bug had caused us to log schemeless URLs instead.
    go get -x golang.org/x/text@v0.1.0
    stderr '^# get https://golang.org/x/text\?go-get=1$'
    stderr '^# get https://golang.org/x/text\?go-get=1: 200 OK \([0-9.]+s\)$'
    ! stderr '^# get //.*'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 422 bytes
    - Viewed (0)
  2. test/fixedbugs/bug482.go

    // license that can be found in the LICENSE file.
    
    // Using the same name for a field in a composite literal and for a
    // global variable that depends on the variable being initialized
    // caused gccgo to erroneously report "variable initializer refers to
    // itself".
    
    package p
    
    type S struct {
    	F int
    }
    
    var V = S{F: 1}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 455 bytes
    - Viewed (0)
  3. test/fixedbugs/issue20185.go

    // caused an internal compiler error.
    
    package p
    
    func F() {
    	switch t := nil.(type) { // ERROR "cannot type switch on non-interface value|not an interface"
    	default:
    		_ = t
    	}
    }
    
    const x = 1
    
    func G() {
    	switch t := x.(type) { // ERROR "cannot type switch on non-interface value|declared and not used|not an interface"
    	default:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 581 bytes
    - Viewed (0)
  4. test/fixedbugs/issue8047b.go

    // license that can be found in the LICENSE file.
    
    // Issue 8047. Defer setup during panic shouldn't crash for nil defer.
    
    package main
    
    func main() {
    	defer func() {
    		// This recover recovers the panic caused by the nil defer func
    		// g(). The original panic(1) was already aborted/replaced by this
    		// new panic, so when this recover is done, the program completes
    		// normally.
    		recover()
    	}()
    	f()
    }
    
    func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 04 16:32:38 UTC 2019
    - 575 bytes
    - Viewed (0)
  5. test/fixedbugs/bug516.go

    // compile
    
    // Copyright 2023 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.
    
    package p
    
    func F(b []byte, i int) {
    	*(*[1]byte)(b[i*2:]) = [1]byte{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 21:30:46 UTC 2023
    - 276 bytes
    - Viewed (0)
  6. test/fixedbugs/issue59169.go

    // compile
    
    // Copyright 2023 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 59169: caused gofrontend crash.
    
    package p
    
    func F(p *[]byte) {
    	*(*[1]byte)(*p) = *(*[1]byte)((*p)[1:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 18:56:30 UTC 2023
    - 288 bytes
    - Viewed (0)
  7. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/TextStream.java

    import javax.annotation.Nullable;
    
    public interface TextStream {
        /**
         * Called when some chunk of text is available.
         */
        void text(String text);
    
        /**
         * Called when the end of the stream is reached for some reason.
         *
         * @param failure The failure, if any, which caused the end of the stream.
         */
        void endOfStream(@Nullable Throwable failure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. test/fixedbugs/gcc61264.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.
    
    // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
    
    package main
    
    func main() {
            map[int]int{}[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 313 bytes
    - Viewed (0)
  9. test/fixedbugs/bug471.go

    // 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.
    
    // Caused an internal compiler error in gccgo.
    
    package p
    
    type C chan struct{}
    
    func (c C) F() {
    	select {
    	case c <- struct{}{}:
    	default:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 318 bytes
    - Viewed (0)
  10. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         *
         * @return The location of the problem, never {@code null}.
         */
        String getLocation();
    
        /**
         * Gets the exception that caused this problem (if any).
         *
         * @return The exception that caused this problem or {@code null} if not applicable.
         */
        Exception getException();
    
        /**
         * Gets the message that describes this problem.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top