Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for Ra (0.03 sec)

  1. cmd/erasure-multipart.go

    		pool := globalBytePoolCap.Load()
    		bufA := pool.Get()
    		bufB := pool.Get()
    		defer pool.Put(bufA)
    		defer pool.Put(bufB)
    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    	}
    
    	n, err := erasure.Encode(ctx, toEncode, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    			"Multiple custom host names are supported, and multiple values are separated by commas.").Get()
    
    	PilotCertProvider = env.Register("PILOT_CERT_PROVIDER", constants.CertProviderIstiod,
    		"The provider of Pilot DNS certificate. K8S RA will be used for k8s.io/NAME. 'istiod' value will sign"+
    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		p = s.Prog(obj.ANOP)
    		pbover.To.SetTarget(p)
    
    	case ssa.OpPPC64CLRLSLWI:
    		r := v.Reg()
    		r1 := v.Args[0].Reg()
    		shifts := v.AuxInt
    		p := s.Prog(v.Op.Asm())
    		// clrlslwi ra,rs,mb,sh will become rlwinm ra,rs,sh,mb-sh,31-sh as described in ISA
    		p.From = obj.Addr{Type: obj.TYPE_CONST, Offset: ssa.GetPPC64Shiftmb(shifts)}
    		p.AddRestSourceConst(ssa.GetPPC64Shiftsh(shifts))
    		p.Reg = r1
    		p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/internal/poll/fd_windows.go

    // called when the descriptor is first created. This is here rather
    // than in the net package so that it can use fd.wop.
    func (fd *FD) ConnectEx(ra syscall.Sockaddr) error {
    	o := &fd.wop
    	o.sa = ra
    	_, err := execIO(o, func(o *operation) error {
    		return ConnectExFunc(o.fd.Sysfd, o.sa, nil, 0, nil, &o.o)
    	})
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. build/lib/release.sh

    # a full SDK
    function kube::release::package_client_tarballs() {
      # Find all of the built client binaries
      local long_platforms=("${LOCAL_OUTPUT_BINPATH}"/*/*)
      if [[ -n ${KUBE_BUILD_PLATFORMS-} ]]; then
        read -ra long_platforms <<< "${KUBE_BUILD_PLATFORMS}"
      fi
    
      for platform_long in "${long_platforms[@]}"; do
        local platform
        local platform_tag
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		}
    
    	case 15: /* mul/mneg/umulh/umull r,[r,]r; madd/msub/fmadd/fmsub/fnmadd/fnmsub Rm,Ra,Rn,Rd */
    		o1 = c.oprrr(p, p.As)
    
    		rf := int(p.From.Reg)
    		rt := int(p.To.Reg)
    		var r int
    		var ra int
    		if p.From3Type() == obj.TYPE_REG {
    			r = int(p.GetFrom3().Reg)
    			ra = int(p.Reg)
    			if ra == obj.REG_NONE {
    				ra = REGZERO
    			}
    		} else {
    			r = int(p.Reg)
    			if r == obj.REG_NONE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    	// instruction address (NIA, aka PC+4) in LR.
    	OP_BCL_NIA = OP_BCL | 20<<21 | 31<<16 | 1<<2 // bcl 20,31,$+4
    
    	// Masks to match opcodes
    	MASK_PLD_PFX  = 0xfff70000
    	MASK_PLD_SFX  = 0xfc1f0000 // Also checks RA = 0 if check value is OP_PLD_SFX.
    	MASK_PLD_RT   = 0x03e00000 // Extract RT from the pld suffix.
    	MASK_OP_LD    = 0xfc000003
    	MASK_OP_ADDIS = 0xfc000000
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. docs/hu/docs/index.md

    * Az interaktív API dokumentáció automatikusan frissült így már benne van az új body.
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Kattints  a "Try it out" gombra, ennek segítségével kitöltheted a paramétereket és közvetlen használhatod az API-t:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    		pool := globalBytePoolCap.Load()
    		bufA := pool.Get()
    		bufB := pool.Get()
    		defer pool.Put(bufA)
    		defer pool.Put(bufB)
    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    		bugLogIf(ctx, err)
    	}
    	n, erasureErr := erasure.Encode(ctx, toEncode, writers, buffer, writeQuorum)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		if errs := IsValidLabelValue(successCases[i]); len(errs) != 0 {
    			t.Errorf("case %s expected success: %v", successCases[i], errs)
    		}
    	}
    
    	errorCases := []string{
    		"nospecialchars%^=@",
    		"Tama-nui-te-.is.Māori.sun",
    		"\\backslashes\\are\\bad",
    		"-starts-with-dash",
    		"ends-with-dash-",
    		".starts.with.dot",
    		"ends.with.dot.",
    		strings.Repeat("a", 64), // over the limit
    	}
    	for i := range errorCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top