Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for extsh (0.63 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. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DIVWU:          "divwu",
    	DIVWUCC:        "divwu.",
    	DIVWUO:         "divwuo",
    	DIVWUOCC:       "divwuo.",
    	EIEIO:          "eieio",
    	EXTSB:          "extsb",
    	EXTSBCC:        "extsb.",
    	EXTSW:          "extsw",
    	EXTSWCC:        "extsw.",
    	FADDS:          "fadds",
    	FADDSCC:        "fadds.",
    	FCFID:          "fcfid",
    	FCFIDCC:        "fcfid.",
    	FCTID:          "fctid",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	EXTSWSLI $3, R4, R5             // 7c851ef4
    	EXTSWSLICC $16, R3, R4          // 7c6486f5
    	EXTSB R3, R4                    // 7c640774
    	EXTSBCC R3, R4                  // 7c640775
    	EXTSH R3, R4                    // 7c640734
    	EXTSHCC R3, R4                  // 7c640735
    	EXTSW R3, R4                    // 7c6407b4
    	EXTSWCC R3, R4                  // 7c6407b5
    	RLWMI $7, R3, $4026531855, R6   // 50663f06
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages.go

    				exts.AddUint8LengthPrefixed(func(exts *cryptobyte.Builder) {
    					exts.AddBytes([]byte(m.alpnProtocol))
    				})
    			})
    		})
    	}
    	if len(m.scts) > 0 {
    		exts.AddUint16(extensionSCT)
    		exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    			exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    				for _, sct := range m.scts {
    					exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top