Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for outlier (0.28 sec)

  1. 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)
  2. src/crypto/internal/nistec/p224.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 *P224Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1 + 2*p224ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p521.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 *P521Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1 + 2*p521ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256.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 [1 + 2*p256ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    		endLabel := typecheck.AutoLabel(".s")
    
    		// Jump around all the individual switches for each length.
    		s.done.Append(ir.NewBranchStmt(s.pos, ir.OGOTO, outerLabel))
    
    		var outer exprSwitch
    		outer.exprname = ir.NewUnaryExpr(s.pos, ir.OLEN, s.exprname)
    		outer.exprname.SetType(types.Types[types.TINT])
    
    		for _, run := range runs {
    			// Target label to jump to when we match this length.
    			label := typecheck.AutoLabel(".s")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. src/go/parser/resolver.go

    }
    
    const maxScopeDepth int = 1e3
    
    type resolver struct {
    	handle  *token.File
    	declErr func(token.Pos, string)
    
    	// Ordinary identifier scopes
    	pkgScope   *ast.Scope   // pkgScope.Outer == nil
    	topScope   *ast.Scope   // top-most scope; may be pkgScope
    	unresolved []*ast.Ident // unresolved identifiers
    	depth      int          // scope depth
    
    	// Label scopes
    	// (maintained by open/close LabelScope)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/generate.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 *{{.P}}Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1+2*{{.p}}ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/expr.go

    	}
    	if !strings.Contains(field.Note, "go:\"track\"") {
    		return
    	}
    
    	outer := n.X.Type()
    	if outer.IsPtr() {
    		outer = outer.Elem()
    	}
    	if outer.Sym() == nil {
    		base.Errorf("tracked field must be in named struct type")
    	}
    
    	sym := reflectdata.TrackSym(outer, field)
    	if ir.CurFunc.FieldTrack == nil {
    		ir.CurFunc.FieldTrack = make(map[*obj.LSym]struct{})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top