Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 127 for Failure (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.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)
  2. src/net/url/url.go

    func (u *URL) IsAbs() bool {
    	return u.Scheme != ""
    }
    
    // Parse parses a [URL] in the context of the receiver. The provided URL
    // may be relative or absolute. Parse returns nil, err on parse
    // failure, otherwise its return value is the same as [URL.ResolveReference].
    func (u *URL) Parse(ref string) (*URL, error) {
    	refURL, err := Parse(ref)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    			t.Skipf("creating and observing contention on runtime-internal semaphores requires GOMAXPROCS >= %d", workers)
    		}
    
    		var sem uint32 = 1
    		var tries atomic.Int32
    		tries.Store(10_000_000) // prefer controlled failure to timeout
    		var sawContention atomic.Int32
    		var need int32 = 1
    		fn := func() bool {
    			if sawContention.Load() >= need {
    				return false
    			}
    			if tries.Add(-1) < 0 {
    				return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	}
    	if !req.isReplayable() {
    		// Don't retry non-idempotent requests.
    		return false
    	}
    	if _, ok := err.(transportReadFromServerError); ok {
    		// We got some non-EOF net.Conn.Read failure reading
    		// the 1st response byte from the server.
    		return true
    	}
    	if err == errServerClosedIdle {
    		// The server replied with io.EOF while we were trying to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    	// These are all larger than any real SP.
    
    	// Goroutine preemption request.
    	// 0xfffffade in hex.
    	stackPreempt = uintptrMask & -1314
    
    	// Thread is forking. Causes a split stack check failure.
    	// 0xfffffb2e in hex.
    	stackFork = uintptrMask & -1234
    
    	// Force a stack movement. Used for debugging.
    	// 0xfffffeed in hex.
    	stackForceMove = uintptrMask & -275
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    		if actual != expected {
    			t.Errorf("#%d: Jacobi(%d, %d) = %d, but expected %d", i, test.x, test.y, actual, expected)
    		}
    	}
    }
    
    func TestJacobiPanic(t *testing.T) {
    	const failureMsg = "test failure"
    	defer func() {
    		msg := recover()
    		if msg == nil || msg == failureMsg {
    			panic(msg)
    		}
    		t.Log(msg)
    	}()
    	x := NewInt(1)
    	y := NewInt(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/net/http/clientserver_test.go

    		}
    		var dialed bool
    		select {
    		case <-dialedc:
    			dialed = true
    		default:
    		}
    
    		if !tt.ok && dialed {
    			t.Errorf("For key %q, value %q, transport dialed. Expected local failure. Response was: (%v, %v)\nServer replied with: %s", tt.key, tt.val, res, err, body)
    		} else if (err == nil) != tt.ok {
    			t.Errorf("For key %q, value %q; got err = %v; want ok=%v", tt.key, tt.val, err, tt.ok)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // messages and errors to standard error.
    //
    // The -json flag causes download to print a sequence of JSON objects
    // to standard output, describing each downloaded module (or failure),
    // corresponding to this Go struct:
    //
    //	type Module struct {
    //	    Path     string // module path
    //	    Query    string // version query corresponding to this version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    		{
    			Certificate: [][]byte{cert},
    			PrivateKey:  k,
    		},
    	}
    	if _, _, err := testHandshake(t, clientConfig, serverConfig); err != nil {
    		t.Fatalf("unexpected failure :%s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // backing array is immutable.
    func (b *bucket) stk() []uintptr {
    	stk := (*[maxProfStackDepth]uintptr)(add(unsafe.Pointer(b), unsafe.Sizeof(*b)))
    	if b.nstk > maxProfStackDepth {
    		// prove that slicing works; otherwise a failure requires a P
    		throw("bad profile stack count")
    	}
    	return stk[:b.nstk:b.nstk]
    }
    
    // mp returns the memRecord associated with the memProfile bucket b.
    func (b *bucket) mp() *memRecord {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top