Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 189 for REG (0.02 sec)

  1. src/cmd/asm/internal/asm/parse.go

    	// Expect (SB), (FP), (PC), or (SP)
    	p.get('(')
    	reg := p.get(scanner.Ident).String()
    	p.get(')')
    	p.setPseudoRegister(a, reg, isStatic, prefix)
    }
    
    // setPseudoRegister sets the NAME field of addr for a pseudo-register reference such as (SB).
    func (p *Parser) setPseudoRegister(addr *obj.Addr, reg string, isStatic bool, prefix rune) {
    	if addr.Reg != 0 {
    		p.errorf("internal error: reg %s already set in pseudo", reg)
    	}
    	switch reg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. internal/s3select/simdj/testdata/parking-citations-10.json.zst

    WAY","Route":"01521","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999} {"Ticket":1103700150,"IssueData":"2015-12-21T00:00:00","IssueTime":"1435","RPState":"CA","PlateExpiry":"201512","Make":"GMC","BodyStyle":"VN","Color":"WH","Location":"525 S MAIN ST","Route":"1C51","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999} {"Ticket":1104803000,"IssueData":"2015-12-...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 693 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    		&compbasemetrics.TimingHistogramOpts{Name: testHistogramName, Buckets: buckets},
    		"alabel",
    	)
    	toRegister := vec.metrics()
    	registry := compbasemetrics.NewKubeRegistry()
    	for _, reg := range toRegister {
    		registry.MustRegister(reg)
    	}
    	tro, err := vec.NewForLabelValuesChecked(0, 1, []string{"avalue"})
    	if err != nil {
    		t.Error(err)
    	}
    	exerciseTimingRatioHistogram(t, testHistogramName, t0, clk, registry, tro)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

            ivy.expectArtifact('ivyPublish', 'reg').hasType("reg").hasConf(null)
            ivy.expectArtifact('ivyPublish', 'foo').hasType("foo").hasConf(null)
            ivy.expectArtifact('ivyPublish', 'bar').hasType("bar").hasConf(null)
    
            and:
            resolveArtifacts(module) {
                withoutModuleMetadata {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	}
    
    	op := inst.Op.String()
    
    	switch inst.Op &^ 15 {
    	case LDR_EQ, LDRB_EQ, LDRH_EQ, LDRSB_EQ, LDRSH_EQ, VLDR_EQ:
    		// Check for RET
    		reg, _ := inst.Args[0].(Reg)
    		mem, _ := inst.Args[1].(Mem)
    		if inst.Op&^15 == LDR_EQ && reg == R15 && mem.Base == SP && mem.Sign == 0 && mem.Mode == AddrPostIndex {
    			return fmt.Sprintf("RET%s #%d", op[3:], mem.Offset)
    		}
    
    		// Check for PC-relative load.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/a.out.go

    	C_SACON    /* $n(REG) where n <= int16 */
    	C_LACON    /* $n(REG) where n <= int32 */
    	C_DACON    /* $n(REG) where n <= int64 */
    	C_BRA      /* A short offset argument to a branching instruction */
    	C_BRAPIC   /* Like C_BRA, but requires an extra NOP for potential TOC restore by the linker. */
    	C_ZOREG    /* An $0+reg memory op */
    	C_SOREG    /* An $n+reg memory arg where n is a 16 bit signed offset */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" region is not returned.
    func (s allSubtags) Regions() []Region {
    	reg := make([]Region, language.NumRegions)
    	for i := range reg {
    		reg[i] = Region{language.Region(i + 1)}
    	}
    	return reg
    }
    
    // Scripts returns the list of supported scripts. As all scripts are in a
    // consecutive range, it simply returns a slice of numbers in increasing order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/runtime/traceback_test.go

    	n := runtime.Stack(testTracebackArgsBuf[:], false)
    	if a < 0 {
    		// use in-reg args to keep them alive
    		return a + b + c + d + e
    	}
    	return n
    }
    
    //go:noinline
    func testTracebackArgs2(a bool, b struct {
    	a, b, c int
    	x       [2]int
    }, _ [0]int, d [3]byte) int {
    	n := runtime.Stack(testTracebackArgsBuf[:], false)
    	if a {
    		// use in-reg args to keep them alive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/x86/ggen.go

    	}
    
    	return p
    }
    
    func ginsnop(pp *objw.Progs) *obj.Prog {
    	// See comment in ../amd64/ggen.go.
    	p := pp.Prog(x86.AXCHGL)
    	p.From.Type = obj.TYPE_REG
    	p.From.Reg = x86.REG_AX
    	p.To.Type = obj.TYPE_REG
    	p.To.Reg = x86.REG_AX
    	return p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:38:47 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  10. tests/integration/ambient/testdata/wasm-filter.yaml

    spec:
      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
Back to top