Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for extsw (0.04 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"CRORN",
    	"CRXOR",
    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    	"MODUW",
    	"MODSD",
    	"MODSW",
    	"EQV",
    	"EQVCC",
    	"EXTSB",
    	"EXTSBCC",
    	"EXTSH",
    	"EXTSHCC",
    	"FABS",
    	"FABSCC",
    	"FADD",
    	"FADDCC",
    	"FADDS",
    	"FADDSCC",
    	"FCMPO",
    	"FCMPU",
    	"FCTIW",
    	"FCTIWCC",
    	"FCTIWZ",
    	"FCTIWZCC",
    	"FDIV",
    	"FDIVCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. security/pkg/pki/util/san_test.go

    	testCases := map[string]struct {
    		exts  []pkix.Extension
    		found bool
    	}{
    		"No extension": {
    			exts:  []pkix.Extension{},
    			found: false,
    		},
    		"An extensions with wrong OID": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{1, 2, 3}},
    			},
    			found: false,
    		},
    		"Correct SAN extension": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{1, 2, 3}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/os/exec/lp_windows.go

    			}
    			if e[0] != '.' {
    				e = "." + e
    			}
    			exts = append(exts, e)
    		}
    	} else {
    		exts = []string{".com", ".exe", ".bat", ".cmd"}
    	}
    	return exts
    }
    
    // lookPath implements LookPath for the given PATHEXT list.
    func lookPath(file string, exts []string) (string, error) {
    	if strings.ContainsAny(file, `:\/`) {
    		f, err := findExecutable(file, exts)
    		if err == nil {
    			return f, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/internalbootstrap/default-internal.go

    func NewAPFScheme() *runtime.Scheme {
    	scheme := runtime.NewScheme()
    	install.Install(scheme)
    	return scheme
    }
    
    func internalizeFSes(exts []*flowcontrolv1.FlowSchema) map[string]*flowcontrol.FlowSchema {
    	ans := make(map[string]*flowcontrol.FlowSchema, len(exts))
    	scheme := NewAPFScheme()
    	for _, ext := range exts {
    		var untyped flowcontrol.FlowSchema
    		if err := scheme.Convert(ext, &untyped, nil); err != nil {
    			panic(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/path_windows.go

    	list []string
    }
    
    func initPathExts() {
    	var exts []string
    	x := os.Getenv(`PATHEXT`)
    	if x != "" {
    		for _, e := range strings.Split(strings.ToLower(x), `;`) {
    			if e == "" {
    				continue
    			}
    			if e[0] != '.' {
    				e = "." + e
    			}
    			exts = append(exts, e)
    		}
    	} else {
    		exts = []string{".com", ".exe", ".bat", ".cmd"}
    	}
    	pathExts.list = exts
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/mime/type.go

    	mimeTypesLower.Store(extLower, mimeType)
    
    	extensionsMu.Lock()
    	defer extensionsMu.Unlock()
    	var exts []string
    	if ei, ok := extensions.Load(justType); ok {
    		exts = ei.([]string)
    	}
    	for _, v := range exts {
    		if v == extLower {
    			return nil
    		}
    	}
    	extensions.Store(justType, append(exts, extLower))
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. security/pkg/pki/util/san.go

    	}
    
    	return ids, nil
    }
    
    // ExtractSANExtension extracts the "Subject Alternative Name" externsion from
    // the given PKIX extension set.
    func ExtractSANExtension(exts []pkix.Extension) *pkix.Extension {
    	for _, ext := range exts {
    		if ext.Id.Equal(oidSubjectAlternativeName) {
    			// We don't need to examine other extensions anymore since a certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. test/codegen/bitfield.go

    	return x<<7 ^ x2>>57 // arm64:"EXTR\t[$]57,"
    }
    
    func extr4(x, x2 uint32) uint32 {
    	return x<<7 + x2>>25 // arm64:"EXTRW\t[$]25,"
    }
    
    func extr5(x, x2 uint32) uint32 {
    	return x<<7 | x2>>25 // arm64:"EXTRW\t[$]25,"
    }
    
    func extr6(x, x2 uint32) uint32 {
    	return x<<7 ^ x2>>25 // arm64:"EXTRW\t[$]25,"
    }
    
    // check 32-bit shift masking
    func mask32(x uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/ppc64.go

    		ppc64.AADDZECC, ppc64.AADDZEVCC, ppc64.AADDZEV, ppc64.AADDZE,
    		ppc64.ACNTLZDCC, ppc64.ACNTLZD, ppc64.ACNTLZWCC, ppc64.ACNTLZW,
    		ppc64.AEXTSBCC, ppc64.AEXTSB, ppc64.AEXTSHCC, ppc64.AEXTSH,
    		ppc64.AEXTSWCC, ppc64.AEXTSW, ppc64.ANEGCC, ppc64.ANEGVCC,
    		ppc64.ANEGV, ppc64.ANEG, ppc64.ASLBMFEE, ppc64.ASLBMFEV,
    		ppc64.ASLBMTE, ppc64.ASUBMECC, ppc64.ASUBMEVCC, ppc64.ASUBMEV,
    		ppc64.ASUBME, ppc64.ASUBZECC, ppc64.ASUBZEVCC, ppc64.ASUBZEV,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/anames.go

    	"CSINVW",
    	"CSNEG",
    	"CSNEGW",
    	"DC",
    	"DCPS1",
    	"DCPS2",
    	"DCPS3",
    	"DMB",
    	"DRPS",
    	"DSB",
    	"DWORD",
    	"EON",
    	"EONW",
    	"EOR",
    	"EORW",
    	"ERET",
    	"EXTR",
    	"EXTRW",
    	"FABSD",
    	"FABSS",
    	"FADDD",
    	"FADDS",
    	"FCCMPD",
    	"FCCMPED",
    	"FCCMPES",
    	"FCCMPS",
    	"FCMPD",
    	"FCMPED",
    	"FCMPES",
    	"FCMPS",
    	"FCSELD",
    	"FCSELS",
    	"FCVTDH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top