Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,716 for tall (0.04 sec)

  1. src/runtime/stubs.go

    // goexit is the return stub at the top of every goroutine call stack.
    // Each goroutine stack is constructed as if goexit called the
    // goroutine's entry point function, so that when the entry point
    // function returns, it will return to goexit, which will call goexit1
    // to perform the actual exit.
    //
    // This function must never be called directly. Call goexit1 instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/internal/poll/copy_file_range_linux.go

    		case syscall.ENOSYS:
    			// copy_file_range(2) was introduced in Linux 4.5.
    			// Go supports Linux >= 2.6.33, so the system call
    			// may not be present.
    			//
    			// If we see ENOSYS, we have certainly not transferred
    			// any data, so we can tell the caller that we
    			// couldn't handle the transfer and let them fall
    			// back to more generic code.
    			return 0, false, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/runtime/race_arm64.s

    	MOVD	g_m(g), R10
    	// Switch to g0 stack.
    	MOVD	RSP, R19	// callee-saved, preserved across the CALL
    	MOVD	R30, R20	// callee-saved, preserved across the CALL
    	MOVD	m_g0(R10), R11
    	CMP	R11, g
    	BEQ	call	// already on g0
    	MOVD	(g_sched+gobuf_sp)(R11), R12
    	MOVD	R12, RSP
    call:
    	// Decrement SP past where the frame pointer is saved in the Go arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	if q.tail != 0 {
    		q.tail.ptr().schedlink.set(gp)
    	} else {
    		q.head.set(gp)
    	}
    	q.tail.set(gp)
    }
    
    // pushBackAll adds all Gs in q2 to the tail of q. After this q2 must
    // not be used.
    func (q *gQueue) pushBackAll(q2 gQueue) {
    	if q2.tail == 0 {
    		return
    	}
    	q2.tail.ptr().schedlink = 0
    	if q.tail != 0 {
    		q.tail.ptr().schedlink = q2.head
    	} else {
    		q.head = q2.head
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/sync/cond.go

    // when calling the [Cond.Wait] method.
    //
    // A Cond must not be copied after first use.
    //
    // In the terminology of [the Go memory model], Cond arranges that
    // a call to [Cond.Broadcast] or [Cond.Signal] “synchronizes before” any Wait call
    // that it unblocks.
    //
    // For many simple use cases, users will be better off using channels than a
    // Cond (Broadcast corresponds to closing a channel, and Signal corresponds to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    			updateGeneric(&h.macState, h.buffer[:])
    		}
    	}
    
    	tail := len(p) % len(h.buffer) // number of bytes to copy into buffer
    	body := len(p) - tail          // number of bytes to process now
    	if body > 0 {
    		if cpu.S390X.HasVX {
    			updateVX(&h.macState, p[:body])
    		} else {
    			updateGeneric(&h.macState, p[:body])
    		}
    	}
    	h.offset = copy(h.buffer[:], p[body:]) // copy tail bytes - can be 0
    	return nn, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    //
    //go:nosplit
    func gorecover(argp uintptr) any {
    	// Must be in a function running as part of a deferred call during the panic.
    	// Must be called from the topmost function of the call
    	// (the function used in the defer statement).
    	// p.argp is the argument pointer of that topmost deferred function call.
    	// Compare against argp reported by caller.
    	// If they match, the caller is the one who can recover.
    	gp := getg()
    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. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RulesVisitor.java

        }
    
        @Override
        public void visitMethodCallExpression(MethodCallExpression call) {
            ClosureExpression closureExpression = AstUtils.getSingleClosureArg(call);
            if (closureExpression != null) {
                // path { ... }
                rewriteAction(call, extractModelPathFromMethodTarget(call), closureExpression, RuleVisitor.displayName(call));
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

         * we must return it in the following next() call even if it was in the process of being removed
         * when hasNext() was called.
         */
        private @Nullable E nextItem;
    
        /**
         * Index of element returned by most recent call to next. Reset to -1 if this element is deleted
         * by a call to remove.
         */
        private int lastRet;
    
        Itr() {
          lastRet = -1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. src/internal/poll/sock_cloexec_solaris.go

    // Copyright 2024 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.
    
    // This file implements accept for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec, but don't necessarily have accept4.
    // The accept4(3c) function was added to Oracle Solaris in the Solaris 11.4.0
    // release. Thus, on releases prior to 11.4, we fall back to the combination
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top