Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Constraint (0.14 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct podAnnotations = 11 [deprecated = true];
    
      // Pod anti-affinity label selector.
      //
      // Specify the pod anti-affinity that allows you to constrain which nodes
      // your pod is eligible to be scheduled based on labels on pods that are
      // already running on the node rather than based on labels on nodes.
      // There are currently two types of anti-affinity:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    		rk := p.From.Reg
    		rj := p.To.Reg
    		rd := p.RegTo2
    
    		// See section 2.2.7.1 of https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html
    		// for the register usage constraints.
    		if rd == rj || rd == rk {
    			c.ctxt.Diag("illegal register combination: %v\n", p)
    		}
    		o1 = OP_RRR(atomicInst[p.As], uint32(rk), uint32(rj), uint32(rd))
    	}
    
    	out[0] = o1
    	out[1] = o2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    // they're fresh from the operating system. It updates heapArena metadata that is
    // critical for future page allocations.
    //
    // There are no locking constraints on this method.
    func (h *mheap) allocNeedsZero(base, npage uintptr) (needZero bool) {
    	for npage > 0 {
    		ai := arenaIndex(base)
    		ha := h.arenas[ai.l1()][ai.l2()]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top