Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for popf (0.04 sec)

  1. hack/update-generated-docs.sh

      # create the list of generated files
      pushd "${dest}" > /dev/null || return 1
      touch docs/.generated_docs
      find . -type f | cut -sd / -f 2- | LC_ALL=C sort > docs/.generated_docs
      popd > /dev/null || return 1
    }
    
    # Removes previously generated docs-- we don't want to check them in. $KUBE_ROOT
    # must be set.
    remove_generated_docs() {
      if [ -e "${KUBE_ROOT}/docs/.generated_docs" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/runtime/tracebuf.go

    func (q *traceBufQueue) push(buf *traceBuf) {
    	buf.link = nil
    	if q.head == nil {
    		q.head = buf
    	} else {
    		q.tail.link = buf
    	}
    	q.tail = buf
    }
    
    // pop dequeues from the queue of buffers.
    func (q *traceBufQueue) pop() *traceBuf {
    	buf := q.head
    	if buf == nil {
    		return nil
    	}
    	q.head = buf.link
    	if q.head == nil {
    		q.tail = nil
    	}
    	buf.link = nil
    	return buf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pkg/queue/delay.go

    	return q[i].runAt.Before(q[j].runAt)
    }
    
    func (q *pq) Swap(i, j int) {
    	(*q)[i], (*q)[j] = (*q)[j], (*q)[i]
    }
    
    func (q *pq) Push(x any) {
    	*q = append(*q, x.(*delayTask))
    }
    
    func (q *pq) Pop() any {
    	old := *q
    	n := len(old)
    	c := cap(old)
    	// Shrink the capacity of task queue.
    	if n < c/2 && c > 32 {
    		npq := make(pq, n, c/2)
    		copy(npq, old)
    		old = npq
    	}
    	if n == 0 {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	INC:       true,
    	LEA:       true,
    	MOV:       true,
    	MOVNTI:    true,
    	MUL:       true,
    	NEG:       true,
    	NOP:       true,
    	NOT:       true,
    	OR:        true,
    	OUT:       true,
    	POP:       true,
    	POPA:      true,
    	POPCNT:    true,
    	PUSH:      true,
    	PUSHA:     true,
    	RCL:       true,
    	RCR:       true,
    	ROL:       true,
    	ROR:       true,
    	SAR:       true,
    	SBB:       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top