Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for qsub (0.04 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			mwq.Qualifiers = mergeQualifiers(q, mwq.Qualifiers)
    		} else {
    			// Merge adjacent qualifiers.  This case
    			// happens with multi-dimensional array types.
    			if qsub, ok := ret.(*TypeWithQualifiers); ok {
    				q = mergeQualifiers(q, qsub.Qualifiers)
    				ret = qsub.Base
    			}
    			ret = &TypeWithQualifiers{Base: ret, Qualifiers: q}
    		}
    		st.subs.add(ret)
    	}
    
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    	{AMOVWU, C_REG, C_NONE, C_REG, 14, 8, 0, sys.MIPS64, NOTUSETMP},
    
    	{ASUB, C_REG, C_REG, C_REG, 2, 4, 0, 0, 0},
    	{ASUBV, C_REG, C_REG, C_REG, 2, 4, 0, sys.MIPS64, 0},
    	{AADD, C_REG, C_REG, C_REG, 2, 4, 0, 0, 0},
    	{AADDV, C_REG, C_REG, C_REG, 2, 4, 0, sys.MIPS64, 0},
    	{AAND, C_REG, C_REG, C_REG, 2, 4, 0, 0, 0},
    	{ASUB, C_REG, C_NONE, C_REG, 2, 4, 0, 0, 0},
    	{ASUBV, C_REG, C_NONE, C_REG, 2, 4, 0, sys.MIPS64, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    		// order as they are in the specification: RS1, RS2, RS3, RD.
    		ins.rs1, ins.rs2 = ins.rs2, ins.rs1
    
    	case ANEG, ANEGW:
    		// NEG rs, rd -> SUB rs, X0, rd
    		ins.as = ASUB
    		if p.As == ANEGW {
    			ins.as = ASUBW
    		}
    		ins.rs1 = REG_ZERO
    		if ins.rd == obj.REG_NONE {
    			ins.rd = ins.rs2
    		}
    
    	case ANOT:
    		// NOT rs, rd -> XORI $-1, rs, rd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    	{AMOVWU, C_REG, C_NONE, C_NONE, C_REG, C_NONE, 14, 8, 0, NOTUSETMP},
    
    	{ASUB, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{ASUBV, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{AADD, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{AADDV, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{AAND, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{ASUB, C_REG, C_NONE, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    				if sub[max].Op < sub[j].Op || sub[max].Op == sub[j].Op && len(sub[max].Rune) < len(sub[j].Rune) {
    					max = j
    				}
    			}
    			sub[start], sub[max] = sub[max], sub[start]
    
    			for j := start + 1; j < i; j++ {
    				mergeCharClass(sub[start], sub[j])
    				p.reuse(sub[j])
    			}
    			cleanAlt(sub[start])
    			out = append(out, sub[start])
    		}
    
    		// ... and then emit sub[i].
    		if i < len(sub) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. cmd/iam.go

    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    				logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v)", err)
    				time.Sleep(time.Duration(r.Float64() * float64(time.Second)))
    				continue
    			}
    			iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
    			return
    		}
    
    		break
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    		"metrics":                         {url: "/metrics", bucket: "metrics"},
    		"metrics cadvisor sub":            {url: "/metrics/cadvisor", bucket: "metrics/cadvisor"},
    		"metrics probes sub":              {url: "/metrics/probes", bucket: "metrics/probes"},
    		"metrics resource sub":            {url: "/metrics/resource", bucket: "metrics/resource"},
    		"pods":                            {url: "/pods/", bucket: "pods"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ADDSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "ADDS", commutative: true},      // arg0+arg1, set flags.
    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUB"},                                                            // arg0 - arg1
    		{name: "SUBconst", argLength: 1, reg: gp11, asm: "SUB", aux: "Int64"},                                         // arg0 - auxInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    sub-expression trees are left alone except for their roots). This mechanism
    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    		// sh.info is the index of first non-local symbol (number of local symbols)
    		s := ldr.Lookup(".dynsym", 0)
    		i := uint32(0)
    		for sub := s; sub != 0; sub = ldr.SubSym(sub) {
    			i++
    			if !ldr.AttrLocal(sub) {
    				break
    			}
    		}
    		sh.Info = i
    		shsym(sh, ldr, s)
    
    		sh = elfshname(".dynstr")
    		sh.Type = uint32(elf.SHT_STRTAB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top