Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for Failure (0.17 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	// stack space. If the compiler marks them as NOSPLIT this seems
    	// as though it could lead to situations where the linker's
    	// nosplit-overflow analysis would trigger a link failure. On the
    	// other hand if they not tagged NOSPLIT then this could cause
    	// problems when building the runtime (since there may be calls to
    	// asm routine in cases where it's not safe to grow the stack). In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/plugin_test.go

    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "life.so", "./issue25756/plugin")
    	goCmd(t, "build", "-o", "issue25756.exe", "./issue25756/main.go")
    	// Fails intermittently, but 20 runs should cause the failure
    	for n := 20; n > 0; n-- {
    		t.Run(fmt.Sprint(n), func(t *testing.T) {
    			t.Parallel()
    			run(t, "./issue25756.exe")
    		})
    	}
    }
    
    // Test with main using -buildmode=pie with plugin for issue #43228
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/fmt/doc.go

    through the fmt package.  For example, if a String method
    calls panic("bad"), the resulting formatted message will look
    like
    
    	%!s(PANIC=bad)
    
    The %!s just shows the print verb in use when the failure
    occurred. If the panic is caused by a nil receiver to an Error
    or String method, however, the output is the undecorated
    string, "<nil>".
    
    # Scanning
    
    An analogous set of functions scans formatted text to yield
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/runtime/mgclimit.go

    	l.updateLocked(now)
    	l.gcEnabled = enableGC
    	l.transitioning = true
    	// N.B. finishGCTransition releases the lock.
    	//
    	// We don't release here to increase the chance that if there's a failure
    	// to finish the transition, that we throw on failing to acquire the lock.
    }
    
    // finishGCTransition notifies the limiter that the GC transition is complete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    	fatal(s)
    }
    
    // throw triggers a fatal error that dumps a stack trace and exits.
    //
    // throw should be used for runtime-internal fatal errors where Go itself,
    // rather than user code, may be at fault for the failure.
    //
    // NOTE: temporarily marked "go:noinline" pending investigation/fix of
    // issue #67274, so as to fix longtest builders.
    //
    // throw should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/runtime/gc_test.go

    		if cls := runtime.GCTestPointerClass(unsafe.Pointer(new)); cls != "stack" {
    			t.Fatalf("test bug: new (%#x) should be a stack pointer, not %s", new2, cls)
    		}
    		// This was a real failure.
    		return false
    	}
    	return true
    }
    
    func TestGCTestMoveStackRepeatedly(t *testing.T) {
    	// Move the stack repeatedly to make sure we're not doubling
    	// it each time.
    	for i := 0; i < 100; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/os/file_unix.go

    			}
    		} else if err := syscall.SetNonblock(fd, true); err == nil {
    			f.nonblock = true
    			clearNonBlock = true
    		} else {
    			pollable = false
    		}
    	}
    
    	// An error here indicates a failure to register
    	// with the netpoll system. That can happen for
    	// a file descriptor that is not supported by
    	// epoll/kqueue; for example, disk files on
    	// Linux systems. We assume that any real error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    		if time.Until(deadline) < duration {
    			break
    		}
    		t.Logf("retrying with %s duration", duration)
    	}
    
    	if broken {
    		t.Skipf("ignoring failure on %s/%s; see golang.org/issue/13841", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top