Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for Fuller (0.42 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    // Graph method.
    //
    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    // *Requirements before any other method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    		a = b.installAction(a, mode)
    	}
    
    	return a
    }
    
    // VetAction returns the action for running go vet on package p.
    // It depends on the action for compiling p.
    // If the caller may be causing p to be installed, it is up to the caller
    // to make sure that the install depends on (runs after) vet.
    func (b *Builder) VetAction(mode, depMode BuildMode, p *load.Package) *Action {
    	a := b.vetAction(mode, depMode, p)
    	a.VetxOnly = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. 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)
    }
    
    func (p *{{.P}}Point) bytes(out *[1+2*{{.p}}ElementLength]byte) []byte {
    	if p.z.IsZero() == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/types2/errors.go

    	if !p {
    		msg := "assertion failed"
    		// Include information about the assertion location. Due to panic recovery,
    		// this location is otherwise buried in the middle of the panicking stack.
    		if _, file, line, ok := runtime.Caller(1); ok {
    			msg = fmt.Sprintf("%s:%d: %s", file, line, msg)
    		}
    		panic(msg)
    	}
    }
    
    // An errorDesc describes part of a type-checking error.
    type errorDesc struct {
    	pos syntax.Pos
    	msg string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    	pkgInAll loadPkgFlags = 1 << iota
    
    	// pkgIsRoot indicates that the package matches one of the root package
    	// patterns requested by the caller.
    	//
    	// If LoadTests is set, then when pkgIsRoot and pkgImportsLoaded are both set,
    	// the caller who set the last of those flags must populate a test for the
    	// package (in the pkg.test field).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512.go

    	}
    	return
    }
    
    func (d *digest) Sum(in []byte) []byte {
    	if d.function != crypto.SHA512_224 && d.function != crypto.SHA512_256 {
    		boring.Unreachable()
    	}
    	// Make a copy of d so that caller can keep writing and summing.
    	d0 := new(digest)
    	*d0 = *d
    	hash := d0.checkSum()
    	switch d0.function {
    	case crypto.SHA384:
    		return append(in, hash[:Size384]...)
    	case crypto.SHA512_224:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    func (r *reporter) Warnf(format string, args ...any) {
    	fmt.Fprintf(r.getState().err, format, args...)
    }
    
    // Write emits a slice to the reporter's output stream.
    //
    // Any error is returned to the caller, and does not otherwise affect the
    // reporter's exit code.
    func (r *reporter) Write(p []byte) (int, error) {
    	return r.getState().out.Write(p)
    }
    
    // Report emits a non-nil error to the reporter's error stream,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/parse.go

    type Block interface {
    	Pos() Position
    	PrintHTML(buf *bytes.Buffer)
    	printMarkdown(buf *bytes.Buffer, s mdState)
    }
    
    type mdState struct {
    	prefix  string
    	prefix1 string // for first line only
    	bullet  rune   // for list items
    	num     int    // for numbered list items
    }
    
    type Position struct {
    	StartLine int
    	EndLine   int
    }
    
    func (p Position) Pos() Position {
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typexpr.go

    	// a cycle which needs to be reported). Otherwise we can skip the
    	// call and avoid a possible cycle error in favor of the more
    	// informative "not a type/value" error that this function's caller
    	// will issue (see go.dev/issue/25790).
    	typ := obj.Type()
    	if typ == nil || gotType && wantType {
    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top