Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for reachable (0.2 sec)

  1. src/internal/trace/resources.go

    // Executing returns true if the state indicates that the goroutine is executing
    // and bound to its thread.
    func (s GoState) Executing() bool {
    	return s == GoRunning || s == GoSyscall
    }
    
    // String returns a human-readable representation of a GoState.
    //
    // The format of the returned string is for debugging purposes and is subject to change.
    func (s GoState) String() string {
    	switch s {
    	case GoUndetermined:
    		return "Undetermined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

        Object x =
            new Object() {
              @Override
              protected void finalize() {
                latch.countDown();
              }
            };
        x = null; // Hint to the JIT that x is unreachable
        GcFinalization.await(latch);
        assertEquals(0, latch.getCount());
      }
    
      public void testAwaitDone_Future() {
        final SettableFuture<@Nullable Void> future = SettableFuture.create();
        Object x =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1/types.go

    	// action is what action was taken/failed regarding to the regarding object. It is machine-readable.
    	// This field cannot be empty for new Events and it can have at most 128 characters.
    	Action string `json:"action,omitempty" protobuf:"bytes,6,name=action"`
    
    	// reason is why the action was taken. It is human-readable.
    	// This field cannot be empty for new Events and it can have at most 128 characters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/tests"
    	"golang.org/x/tools/go/analysis/passes/timeformat"
    	"golang.org/x/tools/go/analysis/passes/unmarshal"
    	"golang.org/x/tools/go/analysis/passes/unreachable"
    	"golang.org/x/tools/go/analysis/passes/unsafeptr"
    	"golang.org/x/tools/go/analysis/passes/unusedresult"
    )
    
    func main() {
    	telemetry.Start()
    	objabi.AddVersionFlag()
    
    	telemetry.Inc("vet/invocations")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/crypto/ecdh/nist.go

    	}
    	return k, nil
    }
    
    func (c *nistCurve[Point]) privateKeyToPublicKey(key *PrivateKey) *PublicKey {
    	boring.Unreachable()
    	if key.curve != c {
    		panic("crypto/ecdh: internal error: converting the wrong key type")
    	}
    	p, err := c.newPoint().ScalarBaseMult(key.privateKey)
    	if err != nil {
    		// This is unreachable because the only error condition of
    		// ScalarBaseMult is if the input is not the right size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/os/exec_unix.go

    	// Which type of Process do we have?
    	switch p.mode {
    	case modeHandle:
    		// pidfd
    		return p.pidfdWait()
    	case modePID:
    		// Regular PID
    		return p.pidWait()
    	default:
    		panic("unreachable")
    	}
    }
    
    func (p *Process) pidWait() (*ProcessState, error) {
    	// TODO(go.dev/issue/67642): When there are concurrent Wait calls, one
    	// may wait on the wrong process if the PID is reused after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/poll/fd_poll_runtime.go

    		return nil
    	case pollErrClosing:
    		return errClosing(isFile)
    	case pollErrTimeout:
    		return ErrDeadlineExceeded
    	case pollErrNotPollable:
    		return ErrNotPollable
    	}
    	println("unreachable: ", res)
    	panic("unreachable")
    }
    
    // SetDeadline sets the read and write deadlines associated with fd.
    func (fd *FD) SetDeadline(t time.Time) error {
    	return setDeadlineImpl(fd, t, 'r'+'w')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/options/globalflags.go

    	// Adds flags from k8s.io/apiserver/pkg/admission.
    	globalflag.Register(fs, "default-not-ready-toleration-seconds")
    	globalflag.Register(fs, "default-unreachable-toleration-seconds")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 07:44:58 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/flagdefs.go

    	"stdversion":       true,
    	"stringintconv":    true,
    	"structtag":        true,
    	"testinggoroutine": true,
    	"tests":            true,
    	"timeformat":       true,
    	"unmarshal":        true,
    	"unreachable":      true,
    	"unsafeptr":        true,
    	"unusedresult":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top