Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 189 for REG (0.13 sec)

  1. src/cmd/internal/pkgpattern/pkgpattern.go

    	}
    	re = strings.ReplaceAll(re, `\.\.\.`, wild)
    
    	reg := regexp.MustCompile(`^` + re + `$`)
    
    	return func(name string) bool {
    		if vendorExclude {
    			if strings.Contains(name, vendorChar) {
    				return false
    			}
    			name = replaceVendor(name, vendorChar)
    		}
    		return reg.MatchString(name)
    	}
    }
    
    // hasPathPrefix reports whether the path s begins with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/anames5.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package arm
    
    var cnames5 = []string{
    	"NONE",
    	"REG",
    	"REGREG",
    	"REGREG2",
    	"REGLIST",
    	"SHIFT",
    	"SHIFTADDR",
    	"FREG",
    	"PSR",
    	"FCR",
    	"SPR",
    	"RCON",
    	"NCON",
    	"RCON2A",
    	"RCON2S",
    	"SCON",
    	"LCON",
    	"LCONADDR",
    	"ZFCON",
    	"SFCON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 19:54:44 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/gnu.go

    // This form typically matches the syntax defined in the ARM Reference Manual.
    func GNUSyntax(inst Inst) string {
    	switch inst.Op {
    	case RET:
    		if r, ok := inst.Args[0].(Reg); ok && r == X30 {
    			return "ret"
    		}
    	case B:
    		if _, ok := inst.Args[0].(Cond); ok {
    			return strings.ToLower("b." + inst.Args[0].String() + " " + inst.Args[1].String())
    		}
    	case SYSL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/kubelet/network/dns/dns_windows.go

    	for _, e := range list {
    		if e == elem {
    			return true
    		}
    	}
    	return false
    }
    
    func getRegistryStringValue(reg, key string) (string, error) {
    	regKey, err := registry.OpenKey(registry.LOCAL_MACHINE, reg, registry.QUERY_VALUE)
    	if err != nil {
    		return "", err
    	}
    	defer regKey.Close()
    
    	regValue, _, err := regKey.GetStringValue(key)
    	return regValue, err
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/c/kernels/summary_op_test.cc

                          error::INVALID_ARGUMENT);
    }
    
    TEST(ScalarSummaryOpTest, IsRegistered) {
      const OpRegistrationData* reg;
      TF_CHECK_OK(OpRegistry::Global()->LookUp("ScalarSummary", &reg));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 6.7K bytes
    - Viewed (0)
Back to top