Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for qsubs (0.1 sec)

  1. pkg/registry/certificates/certificates/storage/storage.go

    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, nil, err
    	}
    
    	// Subresources use the same store and creation strategy, which only
    	// allows empty subs. Updates to an existing subresource are handled by
    	// dedicated strategies.
    	statusStore := *store
    	statusStore.UpdateStrategy = csrregistry.StatusStrategy
    	statusStore.ResetFieldsStrategy = csrregistry.StatusStrategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/anames.go

    	"FDIVS",
    	"FMADD",
    	"FMADDS",
    	"FMOVD",
    	"FMOVS",
    	"FMSUB",
    	"FMSUBS",
    	"FMUL",
    	"FMULS",
    	"FNABS",
    	"FNEG",
    	"FNEGS",
    	"LEDBR",
    	"LDEBR",
    	"LPDFR",
    	"LNDFR",
    	"FSUB",
    	"FSUBS",
    	"FSQRT",
    	"FSQRTS",
    	"FIEBR",
    	"FIDBR",
    	"CPSDR",
    	"LTEBR",
    	"LTDBR",
    	"TCEB",
    	"TCDB",
    	"LDGR",
    	"LGDR",
    	"CEFBRA",
    	"CDFBRA",
    	"CEGBRA",
    	"CDGBRA",
    	"CFEBRA",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

    dependencies {
        conf 'foo:bar:1'
        conf project(':sub')
    }
    
    configurations.all {
      resolutionStrategy {
          dependencySubstitution { DependencySubstitutions subs ->
              subs.substitute(subs.module('foo:bar:1')).using(subs.project(':sub'))
          }
          failOnVersionConflict()
      }
    }
    
    """
    
            when:
            succeeds ':checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (SUBS x (SLLconst [c] y)) => (SUBSshiftLL x y [c])
    (SUBS (SLLconst [c] y) x) => (RSBSshiftLL x y [c])
    (SUBS x (SRLconst [c] y)) => (SUBSshiftRL x y [c])
    (SUBS (SRLconst [c] y) x) => (RSBSshiftRL x y [c])
    (SUBS x (SRAconst [c] y)) => (SUBSshiftRA x y [c])
    (SUBS (SRAconst [c] y) x) => (RSBSshiftRA x y [c])
    (SUBS x (SLL y z)) => (SUBSshiftLLreg x y z)
    (SUBS (SLL y z) x) => (RSBSshiftLLreg x y z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. src/regexp/syntax/regexp.go

    	OpRepeat                       // matches Sub[0] at least Min times, at most Max (Max == -1 is no limit)
    	OpConcat                       // matches concatenation of Subs
    	OpAlternate                    // matches alternation of Subs
    )
    
    const opPseudo Op = 128 // where pseudo-ops start
    
    // Equal reports whether x and y have identical structure.
    func (x *Regexp) Equal(y *Regexp) bool {
    	if x == nil || y == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// SUBS <Xd>, <Xn|SP>, <R><m>{, <extend_1> {#<amount>}}
    	{0xffe00000, 0xeb200000, SUBS, instArgs{arg_Xd, arg_Xns, arg_Rm_extend__UXTB_0__UXTH_1__UXTW_2__LSL_UXTX_3__SXTB_4__SXTH_5__SXTW_6__SXTX_7__0_4}, nil},
    	// CMP <Wn|WSP>, #<imm>{, <shift>}
    	{0xff00001f, 0x7100001f, CMP, instArgs{arg_Wns, arg_IAddSub}, nil},
    	// SUBS <Wd>, <Wn|WSP>, #<imm>{, <shift>}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  7. src/math/big/arith_arm64.s

    	MOVD	z+0(FP), R3
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R1
    	MOVD	y+48(FP), R2
    	CMP	$32, R0
    	BGE	large		// large-sized 'z' and 'x'
    	CBZ	R0, len0	// the length of z is 0
    	MOVD.P	8(R1), R4
    	SUBS	R2, R4		// z[0] = x[0] - y, set carry
    	MOVD.P	R4, 8(R3)
    	SUB	$1, R0
    	CBZ	R0, len1	// the length of z is 1
    	TBZ	$0, R0, two	// do it once
    	MOVD.P	8(R1), R4
    	SBCS	$0, R4
    	MOVD.P	R4, 8(R3)
    	SUB	$1, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_test.go

    	// Extract named BEGIN...END blocks from output
    	partRe := regexp.MustCompile(`(?ms)^BEGIN ([^\n]*)\n(.*?)\nEND`)
    	blocks := map[string]string{}
    	for _, subs := range partRe.FindAllSubmatch(got, -1) {
    		blocks[string(subs[1])] = string(subs[2])
    	}
    
    	infoGoroutinesRe := regexp.MustCompile(`\*\s+\d+\s+running\s+`)
    	if bl := blocks["info goroutines"]; !infoGoroutinesRe.MatchString(bl) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	case DIVD, DIVDCC, DIVDU, DIVDUCC, DIVDE, DIVDECC, DIVDEU, DIVDEUCC, DIVDO, DIVDOCC, DIVDUO, DIVDUOCC:
    		return true
    	case MODUD, MODSD, MODUW, MODSW:
    		return true
    	case FADD, FADDS, FSUB, FSUBS, FMUL, FMULS, FDIV, FDIVS, FMADD, FMADDS, FMSUB, FMSUBS, FNMADD, FNMADDS, FNMSUB, FNMSUBS, FMULSCC:
    		return true
    	case FADDCC, FADDSCC, FSUBCC, FMULCC, FDIVCC, FDIVSCC:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. test/codegen/mathbits.go

    	// s390x:"SUBE"
    	// mips64:"SUBV","SGTU"
    	// riscv64: "SUB","SLTU"
    	return bits.Sub(x, 7, ci)
    }
    
    func SubZ(x, y uint) (r, co uint) {
    	// amd64:"SUBQ","SBBQ","NEGQ",-"NEGL"
    	// arm64:"SUBS","NGC","NEG",-"SBCS",-"ADD",-"SUB\t",-"CMP"
    	// loong64:"SUBV","SGTU"
    	// ppc64x:"SUBC", -"SUBE", "SUBZE", "NEG"
    	// s390x:"SUBC"
    	// mips64:"SUBV","SGTU"
    	// riscv64: "SUB","SLTU"
    	return bits.Sub(x, y, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top