Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for Ra (0.02 sec)

  1. src/net/dial.go

    		}
    	}
    	la := sd.LocalAddr
    	switch ra := ra.(type) {
    	case *TCPAddr:
    		la, _ := la.(*TCPAddr)
    		if sd.MultipathTCP() {
    			c, err = sd.dialMPTCP(ctx, la, ra)
    		} else {
    			c, err = sd.dialTCP(ctx, la, ra)
    		}
    	case *UDPAddr:
    		la, _ := la.(*UDPAddr)
    		c, err = sd.dialUDP(ctx, la, ra)
    	case *IPAddr:
    		la, _ := la.(*IPAddr)
    		c, err = sd.dialIP(ctx, la, ra)
    	case *UnixAddr:
    		la, _ := la.(*UnixAddr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/encoding/gob/timing_test.go

    	err := enc.Encode(a)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	ra := reflect.ValueOf(a)
    	rt := ra.Type()
    	b.ResetTimer()
    
    	b.ReportAllocs()
    	b.RunParallel(func(pb *testing.PB) {
    		// TODO(#19025): Move per-thread allocation before ResetTimer.
    		rp := reflect.New(rt)
    		rp.Elem().Set(reflect.MakeSlice(rt, ra.Len(), ra.Cap()))
    		p := rp.Interface()
    
    		bbuf := benchmarkBuf{data: buf.Bytes()}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 07:16:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_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)
    #  else
    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X  (RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    
    #define P8_STXVB16X(VS,RA,RB) \
    	VPERM	VS, VS, ESPERM, TMP2; \
    	STXVD2X TMP2, (RA+RB)
    
    #  endif
    #else
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X  (RA+RB), VT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/virtualservice/jwtclaimroute.go

    		ns := r.Metadata.FullName.Namespace.String()
    		if _, found := requestAuthNByNamespace[ns]; !found {
    			requestAuthNByNamespace[ns] = []klabels.Selector{}
    		}
    		ra := r.Message.(*v1beta1.RequestAuthentication)
    		raSelector := klabels.SelectorFromSet(ra.GetSelector().GetMatchLabels())
    		requestAuthNByNamespace[ns] = append(requestAuthNByNamespace[ns], raSelector)
    		return true
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/doc.go

    of the expected endian order. If 'BR' is used then zero extend is assumed.
    
    Memory references n(Ra) indicate the address in Ra + n. When used with an update form
    of an opcode, the value in Ra is incremented by n.
    
    Memory references (Ra+Rb) or (Ra)(Rb) indicate the address Ra + Rb, used by indexed
    loads or stores. Both forms are accepted. When used with an update then the base register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/test/java/jcifs/tests/FileOperationsTest.java

                          SmbFile t = new SmbFile(d1, makeRandomName()) ) {
                        try {
                            try ( SmbRandomAccessFile ra = f.openRandomAccess("rw") ) {
                                ra.setLength(length);
                            }
    
                            f.copyTo(t);
                            assertTrue(f.exists());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. security/pkg/pki/ra/common.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package ra
    
    import (
    	"fmt"
    	"time"
    
    	clientset "k8s.io/client-go/kubernetes"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/slices"
    	raerror "istio.io/istio/security/pkg/pki/error"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top