Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for popPod (0.09 sec)

  1. security/pkg/server/ca/server_test.go

    			server, _ := New(c.ca, time.Duration(1), c.authenticators, multiClusterController)
    
    			var pods []runtime.Object
    			for _, p := range c.pods {
    				pods = append(pods, toPod(p, strings.HasPrefix(p.name, "ztunnel")))
    			}
    			client := kube.NewFakeClient(pods...)
    			stop := test.NewStop(t)
    			multiClusterController.Add("fake", client, stop)
    			client.RunAndWait(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	LODSB:     "lods",
    	LODSD:     "lods",
    	LODSQ:     "lods",
    	LODSW:     "lods",
    	MOVSD:     "movsl",
    	MOVSD_XMM: "movsd",
    	OUTSD:     "outsl",
    	POPA:      "popaw",
    	POPAD:     "popa",
    	POPF:      "popfw",
    	POPFD:     "popf",
    	PUSHA:     "pushaw",
    	PUSHAD:    "pusha",
    	PUSHF:     "pushfw",
    	PUSHFD:    "pushf",
    	SCASB:     "scas",
    	SCASD:     "scas",
    	SCASQ:     "scas",
    	SCASW:     "scas",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. hack/pin-dependency.sh

            find . -name go.mod -print | while read -r modfile; do
                (cd "$(dirname "${modfile}")" && go mod edit -replace "${dep}=${replacement}@${rev}")
            done
        fi
      popd >/dev/null 2>&1
    done
    
    echo ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/heap/heap_test.go

    		// Retrieve head without removing it
    		head := h.Peek()
    		if e, a := i, head.(testHeapObject).val; a != e {
    			t.Errorf("expected %d, got %d", e, a)
    		}
    	}
    
    	// Make sure that the numbers are popped in ascending order.
    	prevNum := 0
    	for i := 0; i < amount; i++ {
    		obj, err := h.Pop()
    		num := obj.(testHeapObject).val.(int)
    		// All the items must be sorted.
    		if err != nil || prevNum > num {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. bin/init.sh

        chmod +x "$2"
    
        # Make a copy named just "envoy" in the same directory (overwrite if necessary).
        echo "Copying $2 to $(dirname "$2")/${3}"
        cp -f "$2" "$(dirname "$2")/${3}"
        popd
      fi
    }
    
    mkdir -p "${TARGET_OUT}"
    
    # Set the value of DOWNLOAD_COMMAND (either curl or wget)
    set_download_command
    
    if [[ -n "${DEBUG_IMAGE:-}" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/go/ast/commentmap.go

    	s.pop(n.Pos())
    	*s = append((*s), n)
    }
    
    // pop pops all nodes that appear lexically before pos
    // (i.e., whose lexical extent has ended before or at pos).
    // It returns the last node popped.
    func (s *nodeStack) pop(pos token.Pos) (top Node) {
    	i := len(*s)
    	for i > 0 && (*s)[i-1].End() <= pos {
    		top = (*s)[i-1]
    		i--
    	}
    	*s = (*s)[0:i]
    	return top
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	// are popped from this heap before the scheduler looks at activeQ
    	podBackoffQ *heap.Heap
    	// unschedulablePods holds pods that have been tried and determined unschedulable.
    	unschedulablePods *UnschedulablePods
    	// schedulingCycle represents sequence number of scheduling cycle and is incremented
    	// when a pod is popped.
    	schedulingCycle int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. src/encoding/xml/read.go

    	// Record that decoder must stop at end tag corresponding to start.
    	d.pushEOF()
    
    	d.unmarshalDepth++
    	err := val.UnmarshalXML(d, *start)
    	d.unmarshalDepth--
    	if err != nil {
    		d.popEOF()
    		return err
    	}
    
    	if !d.popEOF() {
    		return fmt.Errorf("xml: %s.UnmarshalXML did not consume entire <%s> element", receiverType(val), start.Name.Local)
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. src/runtime/mgcstack.go

    // will not keep heap objects live. Unlike the main garbage
    // collection, we can't sweep the dead stack objects; they live on in
    // a moribund state until the stack frame that contains them is
    // popped.
    //
    // A stack can look like this:
    //
    // +----------+
    // | foo()    |
    // | +------+ |
    // | |  A   | | <---\
    // | +------+ |     |
    // |          |     |
    // | +------+ |     |
    // | |  B   | |     |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/debug/dwarf/const.go

    	opPick       = 0x15 /* 1 op, 1 byte stack index */
    	opSwap       = 0x16
    	opRot        = 0x17
    	opXderef     = 0x18
    	opAbs        = 0x19
    	opAnd        = 0x1A
    	opDiv        = 0x1B
    	opMinus      = 0x1C
    	opMod        = 0x1D
    	opMul        = 0x1E
    	opNeg        = 0x1F
    	opNot        = 0x20
    	opOr         = 0x21
    	opPlus       = 0x22
    	opPlusUconst = 0x23 /* 1 op, ULEB128 addend */
    	opShl        = 0x24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top