Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 126 for REG (0.03 sec)

  1. src/cmd/internal/obj/loong64/a.out.go

    	C_AND0CON
    	C_ADDCON // -0x800 <= v < 0
    	C_ANDCON // 0 < v <= 0xFFF
    	C_LCON   // other 32
    	C_DCON   // other 64 (could subdivide further)
    	C_SACON  // $n(REG) where n <= int12
    	C_SECON
    	C_LACON // $n(REG) where int12 < n <= int32
    	C_LECON
    	C_DACON // $n(REG) where int32 < n
    	C_STCON // $tlsvar
    	C_SBRA
    	C_LBRA
    	C_SAUTO
    	C_LAUTO
    	C_SEXT
    	C_LEXT
    	C_ZOREG
    	C_SOREG
    	C_LOREG
    	C_GOK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pkg/controller/validatingadmissionpolicystatus/controller.go

    		policyClient: policyClient,
    		typeChecker:  typeChecker,
    	}
    	reg, err := policyInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			c.enqueuePolicy(obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			c.enqueuePolicy(newObj)
    		},
    	})
    	if err != nil {
    		return nil, err
    	}
    	c.policySynced = reg.HasSynced
    	return c, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/internal/chacha8rand/chacha8_amd64.s

    #define REPL(val, XR) \
    	MOVL $val, DX; \
    	REPLREG(DX, XR)
    
    // SEED copies the off'th uint32 of the seed into the register XR,
    // replicating it into all four stripes of the register.
    #define SEED(off, reg, XR) \
    	MOVL (4*off)(AX), reg; \
    	REPLREG(reg, XR) \
    
    // block runs 4 ChaCha8 block transformations in the four stripes of the X registers.
    
    // func block(seed *[8]uint32, blocks *[16][4]uint32, counter uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/cluster/cluster.go

    			return true
    		}
    	}
    	return false
    }
    
    func entryPatternToRegexp(pattern string) string {
    	var reg string
    	for i, literal := range strings.Split(pattern, "*") {
    		if i > 0 {
    			reg += ".*"
    		}
    		reg += regexp.QuoteMeta(literal)
    	}
    	return reg
    }
    
    // GetClusterResources returns cluster resources for the given REST config and k8s Clientset.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/anames7.go

    // license that can be found in the LICENSE file.
    
    package arm64
    
    // This order should be strictly consistent to that in a.out.go
    var cnames7 = []string{
    	"", // C_NONE starts from 1
    	"NONE",
    	"REG",
    	"ZREG",
    	"RSP",
    	"FREG",
    	"VREG",
    	"PAIR",
    	"SHIFT",
    	"EXTREG",
    	"SPR",
    	"SPOP",
    	"COND",
    	"ARNG",
    	"ELEM",
    	"LIST",
    	"ZCON",
    	"ABCON0",
    	"ADDCON0",
    	"ABCON",
    	"AMCON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    func (r Region) ISO3() string {
    	if r < isoRegionOffset {
    		return "ZZZ"
    	}
    	r -= isoRegionOffset
    	reg := regionISO.Elem(int(r))
    	switch reg[2] {
    	case 0:
    		return altRegionISO3[reg[3]:][:3]
    	case ' ':
    		return "ZZZ"
    	}
    	return reg[0:1] + reg[2:4]
    }
    
    // M49 returns the UN M.49 encoding of r, or 0 if this encoding
    // is not defined for r.
    func (r Region) M49() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/a.out.go

    	C_ADDCON /* -0x8000 <= v < 0 */
    	C_ANDCON /* 0 < v <= 0xFFFF */
    	C_LCON   /* other 32 */
    	C_DCON   /* other 64 (could subdivide further) */
    	C_SACON  /* $n(REG) where n <= int16 */
    	C_SECON
    	C_LACON /* $n(REG) where int16 < n <= int32 */
    	C_LECON
    	C_DACON /* $n(REG) where int32 < n */
    	C_STCON /* $tlsvar */
    	C_SBRA
    	C_LBRA
    	C_SAUTO
    	C_LAUTO
    	C_SEXT
    	C_LEXT
    	C_ZOREG
    	C_SOREG
    	C_LOREG
    	C_GOK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/amd64/asm.go

    	// That is,
    	//
    	//	MOVQ X(IP), REG  ->  MOVQ $Y, REG
    	//
    	// To determine the instruction and register, we study the op codes.
    	// Consult an AMD64 instruction encoding guide to decipher this.
    	if off < 3 {
    		log.Fatal("R_X86_64_GOTTPOFF reloc not preceded by MOVQ or ADDQ instruction")
    	}
    	op := P[off-3 : off]
    	reg := op[2] >> 3
    
    	if op[1] == 0x8b || reg == 4 {
    		// MOVQ
    		if op[0] == 0x4c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. schema/constraint.go

    package schema
    
    import (
    	"regexp"
    	"strings"
    
    	"gorm.io/gorm/clause"
    )
    
    // reg match english letters and midline
    var regEnLetterAndMidline = regexp.MustCompile(`^[\w-]+$`)
    
    type CheckConstraint struct {
    	Name       string
    	Constraint string // length(phone) >= 10
    	*Field
    }
    
    func (chk *CheckConstraint) GetName() string { return chk.Name }
    
    func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                    expectFiles "projectText-1.0.bar"
                }
            }
            resolveArtifacts(module) {
                ext = 'reg'
                withModuleMetadata {
                    noComponentPublished()
                }
                withoutModuleMetadata {
                    expectFiles "projectText-1.0.reg"
                }
            }
            resolveArtifacts(module) {
                ext = 'jar'
                classifier = 'customjar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top