Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for outlier (0.13 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	if err != nil {
    		return errors.Wrapf(err, "failure while generating %s CSR and key", name)
    	}
    	if err := pkiutil.WriteKey(outdir, name, key); err != nil {
    		return errors.Wrapf(err, "failure while saving %s key", name)
    	}
    
    	if err := pkiutil.WriteCSR(outdir, name, csr); err != nil {
    		return errors.Wrapf(err, "failure while saving %s CSR", name)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes.go

    type controlPlaneHostPathMounts struct {
    	// volumes is a nested map that forces a unique volumes. The outer map's
    	// keys are a string that should specify the target component to add the
    	// volume to. The values (inner map) of the outer map are maps with string
    	// keys and v1.Volume values. The inner map's key should specify the volume
    	// name.
    	volumes map[string]map[string]v1.Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	outer  string // The suffix for immediately containing composite type.
    }
    
    func newComponent(suffix string, kind asmKind, typ string, offset, size int, outer string) component {
    	return component{suffix: suffix, kind: kind, typ: typ, offset: offset, size: size, outer: outer}
    }
    
    // componentsOfType generates a list of components of type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519.go

    // len(seed) is not [SeedSize]. This function is provided for interoperability
    // with RFC 8032. RFC 8032's private keys correspond to seeds in this
    // package.
    func NewKeyFromSeed(seed []byte) PrivateKey {
    	// Outline the function body so that the returned key can be stack-allocated.
    	privateKey := make([]byte, PrivateKeySize)
    	newKeyFromSeed(privateKey, seed)
    	return privateKey
    }
    
    func newKeyFromSeed(privateKey, seed []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/start.go

    	}
    	cmd.Dir = telemetry.Default.LocalDir()
    
    	// The child process must write to a log file, not
    	// the stderr file it inherited from the parent, as
    	// the child may outlive the parent but should not prolong
    	// the life of any pipes created (by the grandparent)
    	// to gather the output of the parent.
    	//
    	// By default, we discard the child process's stderr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/rangefunc/rewrite.go

    		if len(r.outer.ResultList) > 0 {
    			// Make sure that result parameters all have names
    			for i, a := range r.outer.ResultList {
    				if a.Name == nil || a.Name.Value == "_" {
    					r.generateParamName(r.outer.ResultList, i) // updates a.Name
    				}
    			}
    		}
    		// Assign to named results
    		results := []types2.Object{}
    		for _, a := range r.outer.ResultList {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768.go

    // GenerateKey generates a new decapsulation key, drawing random bytes from
    // crypto/rand. The decapsulation key must be kept secret.
    func GenerateKey() (*DecapsulationKey, error) {
    	// The actual logic is in a separate function to outline this allocation.
    	dk := &DecapsulationKey{}
    	return generateKey(dk)
    }
    
    func generateKey(dk *DecapsulationKey) (*DecapsulationKey, error) {
    	var d [32]byte
    	if _, err := rand.Read(d[:]); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

     * when configuration or variant data is required by consumers.
     *
     * This type hierarchy is used whenever the {@code ModuleComponentResolveMetadata} does not need to outlive
     * the build execution.
     */
    public abstract class AbstractLazyModuleComponentResolveMetadata extends AbstractModuleComponentResolveMetadata {
        private final VariantMetadataRules variantMetadataRules;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    inline OpFoldResult foldIdempotent(Operation* op) {
      if (op->getNumOperands() == 1) {
        auto* argumentOp = op->getOperand(0).getDefiningOp();
        if (argumentOp && op->getName() == argumentOp->getName()) {
          // Replace the outer operation output with the inner operation.
          return op->getOperand(0);
        }
      } else if (op->getOperand(0) == op->getOperand(1)) {
        return op->getOperand(0);
      }
    
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P256Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p256UncompressedLength]byte
    	return p.bytes(&out)
    }
    
    func (p *P256Point) bytes(out *[p256UncompressedLength]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top