Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 507 for pkid (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go

    	SYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }
    	SYS_GETPGRP        = 81  // { int sys_getpgrp(void); }
    	SYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }
    	SYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go

    	SYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }
    	SYS_GETPGRP        = 81  // { int sys_getpgrp(void); }
    	SYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }
    	SYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. security/pkg/pki/util/generate_cert.go

    	}
    
    	// Build cert extensions with the subjectIDs.
    	ext, err := BuildSubjectAltNameExtension(subjectIDsInString)
    	if err != nil {
    		return nil, err
    	}
    	exts := []pkix.Extension{*ext}
    
    	subject := pkix.Name{}
    	// Dual use mode if common name in CSR is not empty.
    	// In this case, set CN as determined by DualUseCommonName(subjectIDsInString).
    	if len(csr.Subject.CommonName) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/cert_authenticator_test.go

    // limitations under the License.
    
    package authenticate
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"reflect"
    	"testing"
    
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/peer"
    
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    type mockAuthInfo struct {
    	authType string
    }
    
    func (ai mockAuthInfo) AuthType() string {
    	return ai.authType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 01:20:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    func parseRawAttributes(rawAttributes []asn1.RawValue) []pkix.AttributeTypeAndValueSET {
    	var attributes []pkix.AttributeTypeAndValueSET
    	for _, rawAttr := range rawAttributes {
    		var attr pkix.AttributeTypeAndValueSET
    		rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr)
    		// Ignore attributes that don't parse into pkix.AttributeTypeAndValueSET
    		// (i.e.: challengePassword or unstructuredName).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/photonpersistentdiskvolumesource.go

    // with apply.
    type PhotonPersistentDiskVolumeSourceApplyConfiguration struct {
    	PdID   *string `json:"pdID,omitempty"`
    	FSType *string `json:"fsType,omitempty"`
    }
    
    // PhotonPersistentDiskVolumeSourceApplyConfiguration constructs an declarative configuration of the PhotonPersistentDiskVolumeSource type for use with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/crypto/x509/cert_pool.go

    	// when picking possible candidates the list is built in the order
    	// of match plausibility as to save cycles in buildChains:
    	//   AKID and SKID match
    	//   AKID present, SKID missing / AKID missing, SKID present
    	//   AKID and SKID don't match
    	var matchingKeyID, oneKeyID, mismatchKeyID []potentialParent
    	for _, c := range s.byName[string(cert.RawIssuer)] {
    		candidate, constraint, err := s.cert(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_SCHED_SETPARAM           = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }
    	SYS_SCHED_GETPARAM           = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }
    	SYS_SCHED_SETSCHEDULER       = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }
    	SYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_SCHED_SETPARAM           = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }
    	SYS_SCHED_GETPARAM           = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }
    	SYS_SCHED_SETSCHEDULER       = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }
    	SYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/crypto/x509/boring_test.go

    //go:build boringcrypto
    
    package x509
    
    import (
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/internal/boring/fipstls"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509/pkix"
    	"fmt"
    	"math/big"
    	"strings"
    	"testing"
    	"time"
    )
    
    const (
    	boringCertCA = iota
    	boringCertLeaf
    	boringCertFIPSOK = 0x80
    )
    
    func boringRSAKey(t *testing.T, size int) *rsa.PrivateKey {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top