Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for index (0.06 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    			c.checkindex(p, index1, 15)
    			c.checkindex(p, index2, 15)
    			imm5 |= 1
    			imm5 |= index1 << 1
    			imm4 |= index2
    		case ARNG_H:
    			c.checkindex(p, index1, 7)
    			c.checkindex(p, index2, 7)
    			imm5 |= 2
    			imm5 |= index1 << 2
    			imm4 |= index2 << 1
    		case ARNG_S:
    			c.checkindex(p, index1, 3)
    			c.checkindex(p, index2, 3)
    			imm5 |= 4
    			imm5 |= index1 << 3
    			imm4 |= index2 << 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    				buildPod().phase(v1.PodSucceeded).index("0").Pod,
    				buildPod().phase(v1.PodFailed).index("1").Pod,
    				buildPod().phase(v1.PodSucceeded).trackingFinalizer().index("1").Pod,
    				buildPod().phase(v1.PodSucceeded).trackingFinalizer().index("3").Pod,
    				buildPod().uid("a").phase(v1.PodFailed).trackingFinalizer().index("2").Pod,
    				buildPod().uid("b").phase(v1.PodFailed).trackingFinalizer().index("5").Pod,
    			},
    			wantRmFinalizers: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    func avx2gatherValid(ctxt *obj.Link, p *obj.Prog) bool {
    	// If any pair of the index, mask, or destination registers
    	// are the same, illegal instruction trap (#UD) is triggered.
    	index := regIndex(p.GetFrom3().Index)
    	mask := regIndex(p.From.Reg)
    	dest := regIndex(p.To.Reg)
    	if dest == mask || dest == index || mask == index {
    		ctxt.Diag("mask, index, and destination registers should be distinct: %v", p)
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		if found {
    			if test.index != nil {
    				// Verify field depth and index.
    				if len(f.Index) != len(test.index) {
    					t.Errorf("%s.%s depth %d; want %d: %v vs %v", s.Name(), test.name, len(f.Index), len(test.index), f.Index, test.index)
    				} else {
    					for i, x := range f.Index {
    						if x != test.index[i] {
    							t.Errorf("%s.%s.Index[%d] is %d; want %d", s.Name(), test.name, i, x, test.index[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/reflect/value.go

    }
    
    // FieldByIndex returns the nested field corresponding to index.
    // It panics if evaluation requires stepping through a nil
    // pointer or a field that is not a struct.
    func (v Value) FieldByIndex(index []int) Value {
    	if len(index) == 1 {
    		return v.Field(index[0])
    	}
    	v.mustBe(Struct)
    	for i, x := range index {
    		if i > 0 {
    			if v.Kind() == Pointer && v.typ().Elem().Kind() == abi.Struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
          weight: 50
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          weight: 50
        headers:
          request:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type FunctionParam struct {
    	Index int
    }
    
    func (fp *FunctionParam) print(ps *printState) {
    	if fp.Index == 0 {
    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    	op_BRXH    uint32 = 0x8400 // FORMAT_RSI        BRANCH RELATIVE ON INDEX HIGH (32)
    	op_BRXHG   uint32 = 0xEC44 // FORMAT_RIE5       BRANCH RELATIVE ON INDEX HIGH (64)
    	op_BRXLE   uint32 = 0x8500 // FORMAT_RSI        BRANCH RELATIVE ON INDEX LOW OR EQ. (32)
    	op_BRXLG   uint32 = 0xEC45 // FORMAT_RIE5       BRANCH RELATIVE ON INDEX LOW OR EQ. (64)
    	op_BSA     uint32 = 0xB25A // FORMAT_RRE        BRANCH AND SET AUTHORITY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	R_386_TLS_GD        R_386 = 18 /* 32 bit offset to GOT (index,off) pair */
    	R_386_TLS_LDM       R_386 = 19 /* 32 bit offset to GOT (index,zero) pair */
    	R_386_16            R_386 = 20
    	R_386_PC16          R_386 = 21
    	R_386_8             R_386 = 22
    	R_386_PC8           R_386 = 23
    	R_386_TLS_GD_32     R_386 = 24 /* 32 bit offset to GOT (index,off) pair */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	case obj.TYPE_NONE:
    		return C_NONE
    
    	case obj.TYPE_REG:
    		return c.aclassreg(a.Reg)
    
    	case obj.TYPE_MEM:
    		if a.Index != 0 {
    			if a.Name != obj.NAME_NONE || a.Offset != 0 {
    				c.ctxt.Logf("Unexpected Instruction operand index %d offset %d class %d \n", a.Index, a.Offset, a.Class)
    
    			}
    			return C_XOREG
    		}
    		switch a.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			return C_ADDR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top