Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,387 for xoring (0.2 sec)

  1. src/crypto/sha512/sha512.go

    func Sum512(data []byte) [Size]byte {
    	if boring.Enabled {
    		return boring.SHA512(data)
    	}
    	d := digest{function: crypto.SHA512}
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    }
    
    // Sum384 returns the SHA384 checksum of the data.
    func Sum384(data []byte) [Size384]byte {
    	if boring.Enabled {
    		return boring.SHA384(data)
    	}
    	d := digest{function: crypto.SHA384}
    	d.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/printers/typesetter.go

    	if obj == nil {
    		return p.Delegate.PrintObj(obj, w)
    	}
    	if !obj.GetObjectKind().GroupVersionKind().Empty() {
    		return p.Delegate.PrintObj(obj, w)
    	}
    
    	// we were empty coming in, make sure we're empty going out.  This makes the call thread-unsafe
    	defer func() {
    		obj.GetObjectKind().SetGroupVersionKind(schema.GroupVersionKind{})
    	}()
    
    	gvks, _, err := p.Typer.ObjectKinds(obj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  3. docs/sts/client_grants/__init__.py

    # -*- coding: utf-8 -*-
    import json
    # standard.
    import os
    
    import certifi
    # Dependencies
    import urllib3
    from botocore.credentials import CredentialProvider, RefreshableCredentials
    from botocore.exceptions import CredentialRetrievalError
    from dateutil.parser import parse
    
    from .sts_element import STSElement
    
    
    class ClientGrantsCredentialProvider(CredentialProvider):
        """
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. src/crypto/ecdh/ecdh.go

    // with [crypto/x509.MarshalPKIXPublicKey]. For NIST curves, they then need to
    // be converted with [crypto/ecdsa.PublicKey.ECDH] after parsing.
    type PublicKey struct {
    	curve     Curve
    	publicKey []byte
    	boring    *boring.PublicKeyECDH
    }
    
    // Bytes returns a copy of the encoding of the public key.
    func (k *PublicKey) Bytes() []byte {
    	// Copy the public key to a fixed size buffer that can get allocated on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. README.md

    require distributed deploying MinIO with Erasure Coding. For extended development and production, deploy MinIO with Erasure Coding enabled - specifically,
    with a *minimum* of 4 drives per MinIO server. See [MinIO Erasure Code Overview](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html)
    for more complete documentation.
    
    ### Stable
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/crypto/aes/cipher.go

    	switch k {
    	default:
    		return nil, KeySizeError(k)
    	case 16, 24, 32:
    		break
    	}
    	if boring.Enabled {
    		return boring.NewAESCipher(key)
    	}
    	return newCipher(key)
    }
    
    // newCipherGeneric creates and returns a new cipher.Block
    // implemented in pure Go.
    func newCipherGeneric(key []byte) (cipher.Block, error) {
    	c := aesCipher{l: uint8(len(key) + 28)}
    	expandKeyGo(key, c.enc[:c.l], c.dec[:c.l])
    	return &c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/union_content.go

    func NewUnionCAContentProvider(caContentProviders ...CAContentProvider) CAContentProvider {
    	return unionCAContent(caContentProviders)
    }
    
    // Name is just an identifier
    func (c unionCAContent) Name() string {
    	names := []string{}
    	for _, curr := range c {
    		names = append(names, curr.Name())
    	}
    	return strings.Join(names, ",")
    }
    
    // CurrentCABundleContent provides ca bundle byte content
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. src/crypto/tls/fipsonly/fipsonly.go

    // added to an existing source file, or it can be done by adding a whole
    // new source file and not modifying any existing source files.
    
    import (
    	"crypto/internal/boring/fipstls"
    	"crypto/internal/boring/sig"
    )
    
    func init() {
    	fipstls.Force()
    	sig.FIPSOnly()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 901 bytes
    - Viewed (0)
  9. src/crypto/rsa/pss.go

    	// well-specified number of random bytes is included in the signature, in a
    	// well-specified way.
    
    	if boring.Enabled && rand == boring.RandReader {
    		bkey, err := boringPrivateKey(priv)
    		if err != nil {
    			return nil, err
    		}
    		return boring.SignRSAPSS(bkey, hash, digest, opts.saltLength())
    	}
    	boring.UnreachableExceptTests()
    
    	if opts != nil && opts.Hash != 0 {
    		hash = opts.Hash
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    			cpuset.New(2),
    		},
    		{
    			"allocate 4 full cores with 3 coming from the first NUMA node (filling it up) and 1 coming from the second NUMA node",
    			topoDualSocketHT,
    			mustParseCPUSet(t, "0-11"),
    			8,
    			"",
    			mustParseCPUSet(t, "0,6,2,8,4,10,1,7"),
    		},
    		{
    			"allocate 32 full cores with 30 coming from the first 3 NUMA nodes (filling them up) and 2 coming from the fourth NUMA node",
    			topoDualSocketMultiNumaPerSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top