Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 217 for Potato (0.12 sec)

  1. src/slices/zsortordered.go

    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    // Having the caller check this condition eliminates many leaf recursion calls,
    // which improves performance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca_test.go

    	if err != nil {
    		t.Fatalf("Failed to parse cert chain pem.")
    	}
    	// if CA cert becomes invalid before workload cert it's going to cause workload cert to be invalid too,
    	// however citatel won't rotate if that happens
    	delta := certChain.NotAfter.Sub(t0.Add(ca.defaultCertTTL))
    	if delta >= time.Second*2 {
    		t.Errorf("Invalid default cert TTL, should be the same as cert chain: %v VS (expected) %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/crypto/des/block.go

    	feistelBoxOnce.Do(initFeistelBox)
    
    	// apply PC1 permutation to key
    	key := byteorder.BeUint64(keyBytes)
    	permutedKey := permuteBlock(key, permutedChoice1[:])
    
    	// rotate halves of permuted key according to the rotation schedule
    	leftRotations := ksRotate(uint32(permutedKey >> 28))
    	rightRotations := ksRotate(uint32(permutedKey<<4) >> 4)
    
    	// generate subkeys
    	for i := 0; i < 16; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. docs/sts/README.md

    - Eliminates the need to provide access to buckets and objects without having to define static credentials.
    - Temporary credentials have a limited lifetime, there is no need to rotate them or explicitly revoke them. Expired temporary credentials cannot be reused.
    
    ## Identity Federation
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. docs/kms/IAM.md

    change unified the key-management aspect within MinIO.
    
    The unified KMS-based approach has several advantages:
    
    - Key management is now centralized. There is one way to change or rotate encryption keys.
       There used to be two different mechanisms - one for regular S3 objects and one for IAM data.
    - Reduced server startup time. For IAM encryption with the root credentials, MinIO had
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/font-awesome.min.css

    form:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/kubelet.go

    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    // client that can be used to sign new certificates (or rotate). If a CSR
    // client is set later, it may begin rotating/renewing the client cert.
    func NewKubeletClientCertificateManager(
    	certDirectory string,
    	nodeName types.NodeName,
    	bootstrapCertData []byte,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return err
    	}
    
    	h.lastResponse = &kmsPluginHealthzResponse{err: nil, received: time.Now()}
    	h.ttl = kmsPluginHealthzPositiveTTL
    	return nil
    }
    
    // rotateDEKOnKeyIDChange tries to rotate to a new DEK/seed if the key ID returned by Status does not match the
    // current state.  If a successful rotation is performed, the new DEK/seed and keyID overwrite the existing state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	op_RISBG   uint32 = 0xEC55 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS
    	op_RISBGN  uint32 = 0xEC59 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS
    	op_RISBHG  uint32 = 0xEC5D // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS HIGH
    	op_RISBLG  uint32 = 0xEC51 // FORMAT_RIE6       ROTATE THEN INSERT SELECTED BITS LOW
    	op_RLL     uint32 = 0xEB1D // FORMAT_RSY1       ROTATE LEFT SINGLE LOGICAL (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/crypto/aes/block.go

    }
    
    // Apply sbox0 to each byte in w.
    func subw(w uint32) uint32 {
    	return uint32(sbox0[w>>24])<<24 |
    		uint32(sbox0[w>>16&0xff])<<16 |
    		uint32(sbox0[w>>8&0xff])<<8 |
    		uint32(sbox0[w&0xff])
    }
    
    // Rotate
    func rotw(w uint32) uint32 { return w<<8 | w>>24 }
    
    // Key expansion algorithm. See FIPS-197, Figure 11.
    // Their rcon[i] is our powx[i-1] << 24.
    func expandKeyGo(key []byte, enc, dec []uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top