Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 97 of 97 for growing (0.18 sec)

  1. src/crypto/x509/pkix/pkix.go

    	ExtraNames []AttributeTypeAndValue
    }
    
    // FillFromRDNSequence populates n from the provided [RDNSequence].
    // Multi-entry RDNs are flattened, all entries are added to the
    // relevant n fields, and the grouping is not preserved.
    func (n *Name) FillFromRDNSequence(rdns *RDNSequence) {
    	for _, rdn := range *rdns {
    		if len(rdn) == 0 {
    			continue
    		}
    
    		for _, atv := range rdn {
    			n.Names = append(n.Names, atv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/nodes_test.go

    type test struct {
    	nodetyp string
    	snippet string
    }
    
    var decls = []test{
    	// The position of declarations is always the
    	// position of the first token of an individual
    	// declaration, independent of grouping.
    	{"ImportDecl", `import @"math"`},
    	{"ImportDecl", `import @mymath "math"`},
    	{"ImportDecl", `import @. "math"`},
    	{"ImportDecl", `import (@"math")`},
    	{"ImportDecl", `import (@mymath "math")`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. docs/lambda/README.md

    retrieved from MinIO before returning it to an application. You can register a Lambda Function target on MinIO, once successfully registered it can be used to transform the data for application GET requests on demand.
    
    This document focuses on showing a working example on how to use Object Lambda with MinIO, you must have [MinIO deployed in your environment](https://min.io/docs/minio/linux/operations/installation.html) before you can start using external lambda functions. You also must install...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/runtime/mwbbuf.go

    	// pointers we greyed. We use the buffer itself to temporarily
    	// record greyed pointers.
    	//
    	// TODO: Should scanobject/scanblock just stuff pointers into
    	// the wbBuf? Then this would become the sole greying path.
    	//
    	// TODO: We could avoid shading any of the "new" pointers in
    	// the buffer if the stack has been shaded, or even avoid
    	// putting them in the buffer at all (which would double its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/compress/lzw/writer.go

    	// will make any future Write calls return errClosed
    	err error
    	// table is the hash table from 20-bit keys to 12-bit values. Each table
    	// entry contains key<<12|val and collisions resolve by linear probing.
    	// The keys consist of a 12-bit code prefix and an 8-bit byte suffix.
    	// The values are a 12-bit code.
    	table [tableSize]uint32
    }
    
    // writeLSB writes the code c for "Least Significant Bits first" data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sparsetree.go

    	// entry and exit are conceptually the top of the block (phi functions)
    	// entry+1 and exit-1 are conceptually the bottom of the block (ordinary defs)
    	// entry-1 and exit+1 are conceptually "just before" the block (conditions flowing in)
    	//
    	// This simplifies life if we wish to query information about x
    	// when x is both an input to and output of a block.
    	entry, exit int32
    }
    
    func (s *SparseTreeNode) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    		ctx = warning.WithWarningRecorder(ctx, recorder)
    
    		ctx = audit.WithAuditContext(ctx)
    		ac := audit.AuditContextFrom(ctx)
    		// since this is shared work between multiple requests, we have no way of knowing if any
    		// particular request supports audit annotations.  thus we always attempt to record them.
    		ac.Event.Level = auditinternal.LevelMetadata
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top