Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for sc_t (0.04 sec)

  1. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) s10() uint64 { return uint64(c.regs().sc_s[10]) }
    func (c *sigctxt) s11() uint64 { return uint64(c.regs().sc_s[11]) }
    func (c *sigctxt) t3() uint64  { return uint64(c.regs().sc_t[3]) }
    func (c *sigctxt) t4() uint64  { return uint64(c.regs().sc_t[4]) }
    func (c *sigctxt) t5() uint64  { return uint64(c.regs().sc_t[5]) }
    func (c *sigctxt) t6() uint64  { return uint64(c.regs().sc_t[6]) }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/defs_openbsd_riscv64.go

    }
    
    type sigcontext struct {
    	__sc_unused int32
    	sc_mask     int32
    	sc_ra       uintptr
    	sc_sp       uintptr
    	sc_gp       uintptr
    	sc_tp       uintptr
    	sc_t        [7]uintptr
    	sc_s        [12]uintptr
    	sc_a        [8]uintptr
    	sc_sepc     uintptr
    	sc_f        [32]uintptr
    	sc_fcsr     uintptr
    	sc_cookie   int64
    }
    
    type siginfo struct {
    	si_signo  int32
    	si_code   int32
    	si_errno  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) r7() uint64  { return (uint64)(c.regs().sc_x[7]) }
    func (c *sigctxt) r8() uint64  { return (uint64)(c.regs().sc_x[8]) }
    func (c *sigctxt) r9() uint64  { return (uint64)(c.regs().sc_x[9]) }
    func (c *sigctxt) r10() uint64 { return (uint64)(c.regs().sc_x[10]) }
    func (c *sigctxt) r11() uint64 { return (uint64)(c.regs().sc_x[11]) }
    func (c *sigctxt) r12() uint64 { return (uint64)(c.regs().sc_x[12]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. pilot/pkg/credentials/kube/secrets.go

    func extractRoot(scrt *v1.Secret) (certInfo *credentials.CertInfo, err error) {
    	ret := &credentials.CertInfo{}
    	if hasValue(scrt.Data, GenericScrtCaCert) {
    		ret.Cert = scrt.Data[GenericScrtCaCert]
    		ret.CRL = scrt.Data[GenericScrtCRL]
    		return ret, nil
    	}
    	if hasValue(scrt.Data, TLSSecretCaCert) {
    		ret.Cert = scrt.Data[TLSSecretCaCert]
    		ret.CRL = scrt.Data[TLSSecretCrl]
    		return ret, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tests/integration/security/sds_ingress/util/util.go

    func updateSecret(ingressType CallType, scrt *v1.Secret, ic IngressCredential, isCompoundAndNotGeneric bool) *v1.Secret {
    	if ingressType == Mtls {
    		if isCompoundAndNotGeneric {
    			scrt.Data[tlsScrtCert] = []byte(ic.Certificate)
    			scrt.Data[tlsScrtKey] = []byte(ic.PrivateKey)
    			scrt.Data[tlsScrtCaCert] = []byte(ic.CaCert)
    			scrt.Data[tlsScrtCaCrl] = []byte(ic.Crl)
    		} else {
    			scrt.Data[genericScrtCert] = []byte(ic.Certificate)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. pkg/proxy/servicechangetracker.go

    	namespacedName := types.NamespacedName{Namespace: svc.Namespace, Name: svc.Name}
    
    	sct.lock.Lock()
    	defer sct.lock.Unlock()
    
    	change, exists := sct.items[namespacedName]
    	if !exists {
    		change = &serviceChange{}
    		change.previous = sct.serviceToServiceMap(previous)
    		sct.items[namespacedName] = change
    	}
    	change.current = sct.serviceToServiceMap(current)
    	// if change.previous equal to change.current, it means no change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds_test.go

    			got := map[string]Expected{}
    			for _, scrt := range raw {
    				got[scrt.Name] = Expected{
    					Key:    string(scrt.GetTlsCertificate().GetPrivateKey().GetInlineBytes()),
    					Cert:   string(scrt.GetTlsCertificate().GetCertificateChain().GetInlineBytes()),
    					CaCert: string(scrt.GetValidationContext().GetTrustedCa().GetInlineBytes()),
    					CaCrl:  string(scrt.GetValidationContext().GetCrl().GetInlineBytes()),
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-SCT

    Roland Shoemaker <******@****.***> 1715710936 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. manifests/helm-profiles/openshift-ambient.yaml

        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 664 bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages_test.go

    	}
    
    	// Change serverHelloBytes so that the SCT list is empty
    	i := bytes.Index(serverHelloBytes, sct)
    	if i < 0 {
    		t.Fatal("Cannot find SCT in ServerHello")
    	}
    
    	var serverHelloEmptySCT []byte
    	serverHelloEmptySCT = append(serverHelloEmptySCT, serverHelloBytes[:i-6]...)
    	// Append the extension length and SCT list length for an empty list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top