Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for keyId (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	          	-sha1 -out ./client.csr \
    	          	-subj "/C=US/ST=My State/L=My City/O=My Org/OU=My Unit/CN=client_cn" \
    	   	&& \
    	   EXTFILE="subjectKeyIdentifier=hash\n" && \
    	   EXTFILE="${EXTFILE}authorityKeyIdentifier=keyid,issuer\n" && \
    	   EXTFILE="${EXTFILE}basicConstraints=CA:FALSE\n" && \
    	   EXTFILE="${EXTFILE}subjectAltName=email:copy\n" && \
    	   EXTFILE="${EXTFILE}extendedKeyUsage=clientAuth\n" && \
    	   openssl  x509 -req -days 36500 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    )
    
    // Trace is the result of Parse.
    type Trace struct {
    	Version version.Version
    
    	// Events is the sorted list of Events in the trace.
    	Events Events
    	// Stacks is the stack traces (stored as slices of PCs), keyed by stack IDs
    	// from the trace.
    	Stacks        map[uint32][]uint64
    	PCs           map[uint64]Frame
    	Strings       map[uint64]string
    	InlineStrings []string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidEncryptionKeyID: {
    		Code:           "InvalidRequest",
    		Description:    "The specified KMS KeyID contains unsupported characters",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInsecureSSECustomerRequest: {
    		Code:           "InvalidRequest",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. cmd/admin-bucket-handlers.go

    			// Return error if KMS is not initialized
    			if GlobalKMS == nil {
    				rpt.SetStatus(bucket, fileName, fmt.Errorf("%s", errorCodes[ErrKMSNotConfigured].Description))
    				continue
    			}
    			kmsKey := encConfig.KeyID()
    			if kmsKey != "" {
    				_, err := GlobalKMS.GenerateKey(ctx, &kms.GenerateKeyRequest{
    					Name:           kmsKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Hashing of KeyID in Logs
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

            X509v3 extensions:
                X509v3 Subject Key Identifier:
                    09:3B:3A:9D:4A:29:D8:95:FF:68:BE:7B:43:54:72:E0:AD:A2:E3:AE
                X509v3 Authority Key Identifier:
                    keyid:09:3B:3A:9D:4A:29:D8:95:FF:68:BE:7B:43:54:72:E0:AD:A2:E3:AE
    
                X509v3 Basic Constraints: critical
                    CA:TRUE
        Signature Algorithm: ED25519
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/extension/wasmplugin.go

    	// critical for security (e.g. authn/authz)
    	InitialFetchTimeout: &durationpb.Duration{Seconds: 0},
    }
    
    // PopAppendHTTP takes a list of filters and a set of WASM plugins, keyed by phase. It will remove all
    // plugins of a provided phase from the WASM plugin set and append them to the list of filters
    func PopAppendHTTP(list []*hcm.HttpFilter,
    	filterMap map[extensions.PluginPhase][]*model.WasmPluginWrapper,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. pkg/kube/krt/index.go

    func NewNamespaceIndex[I Namespacer](c Collection[I]) *Index[I, string] {
    	return NewIndex(c, func(o I) []string {
    		return []string{o.GetNamespace()}
    	})
    }
    
    // NewIndex creates a simple index, keyed by key K, over an informer for O. This is similar to
    // NewInformer.AddIndex, but is easier to use and can be added after an informer has already started.
    func NewIndex[I any, K comparable](
    	c Collection[I],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/certlist.go

    		}
    
    		for _, leaf := range leaves {
    			if err := leaf.CreateFromCA(ic, caCert, caKey); err != nil {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // CertificateMap is a flat map of certificates, keyed by Name.
    type CertificateMap map[string]*KubeadmCert
    
    // CertTree returns a one-level-deep tree, mapping a CA cert to an array of certificates that should be signed by it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/claiminfo.go

    	// a prepared resource
    	annotations map[string][]kubecontainer.Annotation
    	prepared    bool
    }
    
    // claimInfoCache is a cache of processed resource claims keyed by namespace/claimname.
    type claimInfoCache struct {
    	sync.RWMutex
    	state     state.CheckpointState
    	claimInfo map[string]*ClaimInfo
    }
    
    // newClaimInfoFromClaim creates a new claim info from a resource claim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top