Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for popf (0.03 sec)

  1. src/runtime/sys_solaris_amd64.s

    	MOVQ	0(R11), DI
    	MOVQ	8(R11), SI
    	MOVQ	16(R11), DX
    	MOVQ	24(R11), CX
    	MOVQ	32(R11), R8
    	MOVQ	40(R11), R9
    skipargs:
    
    	// Call SysV function
    	CALL	AX
    
    	// Return result
    	POPQ	DI
    	MOVQ	AX, libcall_r1(DI)
    	MOVQ	DX, libcall_r2(DI)
    
    	get_tls(CX)
    	MOVQ	g(CX), BX
    	CMPQ	BX, $0
    	JEQ	skiperrno2
    	MOVQ	g_m(BX), BX
    	MOVQ	(m_mOS+mOS_perrno)(BX), AX
    	CMPQ	AX, $0
    	JEQ	skiperrno2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassLoaderHierarchy.kt

                val record = ClassLoaderNode(idOf(classLoader), classLoader.toString())
                classLoaders.add(record)
    
                stack.push(record)
                super.visit(classLoader)
                stack.pop()
            }
    
            override fun visitParent(classLoader: ClassLoader) {
                current.parents.add(idOf(classLoader))
                super.visitParent(classLoader)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    			// events to run at that or an earlier time.
    			// Events should not advance the clock.  But just in case they do...
    			now := fec.Now()
    			for len(fec.waiters) > 0 && !now.Before(fec.waiters[0].targetTime) {
    				ew := heap.Pop(&fec.waiters).(eventWaiter)
    				fec.clientWG.Add(1)
    				go func(f eventclock.EventFunc, now time.Time) {
    					f(now)
    					fec.clientWG.Add(-1)
    				}(ew.f, now)
    				foundSome = true
    			}
    		}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

              // An extra '?' or ',' after a child node indicates the end of all children of this node.
              idx++;
              break;
            }
          }
        }
    
        stack.pop();
        return idx - start;
      }
    
      private static CharSequence reverse(CharSequence s) {
        return new StringBuilder(s).reverse();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/PathVisitor.java

                    if (directoryDetailsHolder.size() > 1 && details != null) {
                        visitor.visitDir(details);
                    }
                }
            }
            directoryDetailsHolder.pop();
            return checkStopFlag();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

                if (objectsInScope.add(owner)) {
                    evaluationStack.add(owner);
                } else {
                    throw prepareException(owner);
                }
            }
    
            private void pop() {
                EvaluationOwner removed = evaluationStack.remove(evaluationStack.size() - 1);
                objectsInScope.remove(removed);
            }
    
            public PerThreadContext open(EvaluationOwner owner) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/sync/poolqueue.go

    package sync
    
    import (
    	"sync/atomic"
    	"unsafe"
    )
    
    // poolDequeue is a lock-free fixed-size single-producer,
    // multi-consumer queue. The single producer can both push and pop
    // from the head, and consumers can pop from the tail.
    //
    // It has the added feature that it nils out unused slots to avoid
    // unnecessary retention of objects. This is important for sync.Pool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    	// removing all incoming dependencies), otherwise there are initialization
    	// cycles.
    	emitted := make(map[*declInfo]bool)
    	for len(pq) > 0 {
    		// get the next node
    		n := heap.Pop(&pq).(*graphNode)
    
    		if debug {
    			fmt.Printf("\t%s (src pos %d) depends on %d nodes now\n",
    				n.obj.Name(), n.obj.order(), n.ndeps)
    		}
    
    		// if n still depends on other nodes, we have a cycle
    		if n.ndeps > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/types/initorder.go

    	// removing all incoming dependencies), otherwise there are initialization
    	// cycles.
    	emitted := make(map[*declInfo]bool)
    	for len(pq) > 0 {
    		// get the next node
    		n := heap.Pop(&pq).(*graphNode)
    
    		if debug {
    			fmt.Printf("\t%s (src pos %d) depends on %d nodes now\n",
    				n.obj.Name(), n.obj.order(), n.ndeps)
    		}
    
    		// if n still depends on other nodes, we have a cycle
    		if n.ndeps > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    func (h ValHeap) Swap(i, j int) { a := h.a; a[i], a[j] = a[j], a[i] }
    
    func (h *ValHeap) Push(x interface{}) {
    	// Push and Pop use pointer receivers because they modify the slice's length,
    	// not just its contents.
    	v := x.(*Value)
    	h.a = append(h.a, v)
    }
    func (h *ValHeap) Pop() interface{} {
    	old := h.a
    	n := len(old)
    	x := old[n-1]
    	h.a = old[0 : n-1]
    	return x
    }
    func (h ValHeap) Less(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top