Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for Ra (0.19 sec)

  1. 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)
  2. 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)
  3. security/pkg/pki/ra/k8s_ra.go

    var pkiRaLog = log.RegisterScope("pkira", "Istiod RA log")
    
    // NewKubernetesRA : Create a RA that interfaces with K8S CSR CA
    func NewKubernetesRA(raOpts *IstioRAOptions) (*KubernetesRA, error) {
    	keyCertBundle, err := util.NewKeyCertBundleWithRootCertFromFile(raOpts.CaCertFile)
    	if err != nil {
    		return nil, raerror.NewError(raerror.CAInitFail, fmt.Errorf("error processing Certificate Bundle for Kubernetes RA"))
    	}
    	istioRA := &KubernetesRA{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/runtime/asm_riscv64.s

    	MOV	$runtime·badsystemstack(SB), T1
    	JALR	RA, T1
    
    switch:
    	// save our state in g->sched. Pretend to
    	// be systemstack_switch if the G stack is scanned.
    	CALL	gosave_systemstack_switch<>(SB)
    
    	// switch to g0
    	MOV	T1, g
    	CALL	runtime·save_g(SB)
    	MOV	(g_sched+gobuf_sp)(g), T0
    	MOV	T0, X2
    
    	// call target function
    	MOV	0(CTXT), T1	// code pointer
    	JALR	RA, T1
    
    	// switch back to g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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