Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for notA (0.23 sec)

  1. src/go/build/constraint/expr.go

    func pushNot(x Expr, not bool) Expr {
    	switch x := x.(type) {
    	default:
    		// unreachable
    		return x
    	case *NotExpr:
    		if _, ok := x.X.(*TagExpr); ok && !not {
    			return x
    		}
    		return pushNot(x.X, !not)
    	case *TagExpr:
    		if not {
    			return &NotExpr{X: x}
    		}
    		return x
    	case *AndExpr:
    		x1 := pushNot(x.X, not)
    		y1 := pushNot(x.Y, not)
    		if not {
    			return or(x1, y1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/runtime/sigqueue.go

    			case sigIdle:
    				if sig.state.CompareAndSwap(sigIdle, sigReceiving) {
    					if GOOS == "darwin" || GOOS == "ios" {
    						sigNoteSleep(&sig.note)
    						break Receive
    					}
    					notetsleepg(&sig.note, -1)
    					noteclear(&sig.note)
    					break Receive
    				}
    			case sigSending:
    				if sig.state.CompareAndSwap(sigSending, sigIdle) {
    					break Receive
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/sort/sort.go

    // with not-a-number (NaN) values ordered before other values.
    type Float64Slice []float64
    
    func (x Float64Slice) Len() int { return len(x) }
    
    // Less reports whether x[i] should be ordered before x[j], as required by the sort Interface.
    // Note that floating-point comparison by itself is not a transitive relation: it does not
    // report a consistent ordering for not-a-number (NaN) values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // window is too short.
    //
    // If you want to Poll something forever, see PollInfinite.
    //
    // Deprecated: This method does not return errors from context, use PollUntilContextTimeout.
    // Note that the new method will no longer return ErrWaitTimeout and instead return errors
    // defined by the context package. Will be removed in a future release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. src/runtime/lock_futex.go

    // One-time notifications.
    func noteclear(n *note) {
    	n.key = 0
    }
    
    func notewakeup(n *note) {
    	old := atomic.Xchg(key32(&n.key), 1)
    	if old != 0 {
    		print("notewakeup - double wakeup (", old, ")\n")
    		throw("notewakeup - double wakeup")
    	}
    	futexwakeup(key32(&n.key), 1)
    }
    
    func notesleep(n *note) {
    	gp := getg()
    	if gp != gp.m.g0 {
    		throw("notesleep not on g0")
    	}
    	ns := int64(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. doc/next/9-todo.md

    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    CL 561935 - crypto CL that used purego tag and mentioned accepted-but-not-implemented proposal https://go.dev/issue/23172 to document purego tag; doesn't need a release note
    CL 568340 - fixed a spurious race in time.Ticker.Reset (added via accepted proposal https://go.dev/issue/33184), doesn't seem to need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         * The current implementation does not remove an entry during a build session that the entry has been used in, but this is not part of the contract.
         *
         * <p>Note: this should be used to create _only_ global scoped instances.
         */
        <K, V> CrossBuildInMemoryCache<K, V> newCache();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/runtime/sigqueue_plan9.go

    	if sig.sleeping {
    		sig.sleeping = false
    		notewakeup(&sig.note)
    	}
    	unlock(&sig.lock)
    
    	return true
    }
    
    // Called to receive the next queued signal.
    // Must only be called from a single goroutine at a time.
    //
    //go:linkname signal_recv os/signal.signal_recv
    func signal_recv() string {
    	for {
    		note := sig.q.pop()
    		if note != "" {
    			return note
    		}
    
    		lock(&sig.lock)
    		sig.sleeping = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. src/internal/syscall/unix/user_darwin.go

    //go:cgo_import_dynamic libc_getpwnam_r getpwnam_r  "/usr/lib/libSystem.B.dylib"
    func libc_getpwnam_r_trampoline()
    
    func Getpwnam(name *byte, pwd *Passwd, buf *byte, size uintptr, result **Passwd) syscall.Errno {
    	// Note: Returns an errno as its actual result, not in global errno.
    	errno, _, _ := syscall_syscall6(abi.FuncPCABI0(libc_getpwnam_r_trampoline),
    		uintptr(unsafe.Pointer(name)),
    		uintptr(unsafe.Pointer(pwd)),
    		uintptr(unsafe.Pointer(buf)),
    		size,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      // Indent and append a C++ statement.
      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
      Renderer Statement(absl::string_view text, const Args &...args) {
        return Statement(absl::Substitute(text, args...));
      }
    
      // Indent and append a call to a TF method returning a Status to check.
      // Note: do *not* include a trailing semicolon in the statement text.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top