Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Ra (0.03 sec)

  1. pilot/pkg/bootstrap/server.go

    	}
    
    	return true
    }
    
    // StartCA starts the CA or RA server if configured.
    func (s *Server) startCA(caOpts *caOptions) {
    	if s.CA == nil && s.RA == nil {
    		return
    	}
    	// init the RA server if configured, else start init CA server
    	if s.RA != nil {
    		log.Infof("initializing CA server with RA")
    		s.initCAServer(s.RA, caOpts)
    	} else if s.CA != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    	if !strings.HasPrefix(s, b) {
    		return nil, errors.New("invalid range")
    	}
    	var ranges []httpRange
    	noOverlap := false
    	for _, ra := range strings.Split(s[len(b):], ",") {
    		ra = textproto.TrimString(ra)
    		if ra == "" {
    			continue
    		}
    		start, end, ok := strings.Cut(ra, "-")
    		if !ok {
    			return nil, errors.New("invalid range")
    		}
    		start, end = textproto.TrimString(start), textproto.TrimString(end)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_ppc64x.s

    #  ifdef GOPPC64_power9
    #define P8_LXVB16X(RA,RB,VT)  LXVB16X	(RA+RB), VT
    #define P8_STXVB16X(VS,RA,RB) STXVB16X	VS, (RA+RB)
    #define XXBRD_ON_LE(VA,VT)    XXBRD	VA, VT
    #  else
    // On POWER8/ppc64le, emulate the POWER9 instructions by loading unaligned
    // doublewords and byte-swapping each doubleword to emulate BE load/stores.
    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X	(RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator.go

    	}
    
    	if allocatorParams.ServiceCIDR != nil {
    		ra.filterOutServiceRange(logger, allocatorParams.ServiceCIDR)
    	} else {
    		logger.Info("No Service CIDR provided. Skipping filtering out service addresses")
    	}
    
    	if allocatorParams.SecondaryServiceCIDR != nil {
    		ra.filterOutServiceRange(logger, allocatorParams.SecondaryServiceCIDR)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/istio_ca.go

    	"istio.io/istio/security/pkg/cmd"
    	"istio.io/istio/security/pkg/pki/ca"
    	"istio.io/istio/security/pkg/pki/ra"
    	caserver "istio.io/istio/security/pkg/server/ca"
    	"istio.io/istio/security/pkg/server/ca/authenticate"
    	"istio.io/istio/security/pkg/util"
    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ASRD, r0)
    			opset(ASRDCC, r0)
    			opset(AROTL, r0)
    
    		case ASRAW: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRAWCC, r0)
    
    		case AEXTSWSLI:
    			opset(AEXTSWSLICC, r0)
    
    		case ASRAD: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRADCC, r0)
    
    		case ASUB: /* SUB Ra,Rb,Rd => subf Rd,ra,rb */
    			opset(ASUB, r0)
    
    			opset(ASUBCC, r0)
    			opset(ASUBV, r0)
    			opset(ASUBVCC, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. hack/lib/golang.sh

    # This overrides any entry in KUBE_STATIC_BINARIES.
    IFS=" " read -ra KUBE_CGO_OVERRIDES_LIST <<< "${KUBE_CGO_OVERRIDES:-}"
    readonly KUBE_CGO_OVERRIDES_LIST
    # KUBE_STATIC_OVERRIDES is a space-separated list of binaries which should be
    # built with CGO disabled. This is in addition to the list in
    # KUBE_STATIC_BINARIES.
    IFS=" " read -ra KUBE_STATIC_OVERRIDES_LIST <<< "${KUBE_STATIC_OVERRIDES:-}"
    readonly KUBE_STATIC_OVERRIDES_LIST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/certcontroller.go

    	if err != nil {
    		return fmt.Errorf("failed generating key and cert by kubernetes: %v", err)
    	}
    	caBundle, err = s.RA.GetRootCertFromMeshConfig(signerName)
    	if err != nil {
    		return err
    	}
    
    	// MeshConfig:Add callback for mesh config update
    	s.environment.AddMeshHandler(func() {
    		newCaBundle, _ := s.RA.GetRootCertFromMeshConfig(signerName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    // locations the spill records specify.
    func (fi *FuncInfo) SpillRegisterArgs(last *Prog, pa ProgAlloc) *Prog {
    	// Spill register args.
    	for _, ra := range fi.spills {
    		spill := Appendp(last, pa)
    		spill.As = ra.Spill
    		spill.From.Type = TYPE_REG
    		spill.From.Reg = ra.Reg
    		spill.To = ra.Addr
    		last = spill
    	}
    	return last
    }
    
    // UnspillRegisterArgs emits the code to restore register args from whatever
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. docs/vi/docs/index.md

      <a href="https://fastapi.tiangolo.com"><img src="https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" alt="FastAPI"></a>
    </p>
    <p align="center">
        FastAPI framework, hiệu năng cao, dễ học, dễ code, sẵn sàng để tạo ra sản phẩm
    </p>
    <p align="center">
    <a href="https://github.com/tiangolo/fastapi/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top