Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for iota (0.16 sec)

  1. src/runtime/panic.go

    // amount of detail printed to stderr. Higher values include more detail.
    type throwType uint32
    
    const (
    	// throwTypeNone means that we are not throwing.
    	throwTypeNone throwType = iota
    
    	// throwTypeUser is a throw due to a problem with the application.
    	//
    	// These throws do not include runtime frames, system goroutines, or
    	// frame metadata.
    	throwTypeUser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/testing/fuzz.go

    }
    
    // fuzzContext holds fields common to all fuzz tests.
    type fuzzContext struct {
    	deps testDeps
    	mode fuzzMode
    }
    
    type fuzzMode uint8
    
    const (
    	seedCorpusOnly fuzzMode = iota
    	fuzzCoordinator
    	fuzzWorker
    )
    
    // runFuzzTests runs the fuzz tests matching the pattern for -run. This will
    // only run the (*F).Fuzz function for each seed corpus without using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    // EventKind indicates the kind of event this is.
    //
    // Use this information to obtain a more specific event that
    // allows access to more detailed information.
    type EventKind uint16
    
    const (
    	EventBad EventKind = iota
    
    	// EventKindSync is an event that indicates a global synchronization
    	// point in the trace. At the point of a sync event, the
    	// trace reader can be certain that all resources (e.g. threads,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    //	varkill - killed by the instruction (set)
    //
    // A kill happens after the use (for an instruction that updates a value, for example).
    type liveEffect int
    
    const (
    	uevar liveEffect = 1 << iota
    	varkill
    )
    
    // valueEffects returns the index of a variable in lv.vars and the
    // liveness effects v has on that variable.
    // If v does not affect any tracked variables, it returns -1, 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	"github.com/google/pprof/internal/graph"
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    // Output formats.
    const (
    	Callgrind = iota
    	Comments
    	Dis
    	Dot
    	List
    	Proto
    	Raw
    	Tags
    	Text
    	TopProto
    	Traces
    	Tree
    	WebList
    )
    
    // Options are the formatting and filtering options used to generate a
    // profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519.go

    	case hash == crypto.SHA512: // Ed25519ph
    		if l := len(message); l != sha512.Size {
    			return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l))
    		}
    		if l := len(context); l > 255 {
    			return nil, errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l))
    		}
    		signature := make([]byte, SignatureSize)
    		sign(signature, priv, message, domPrefixPh, context)
    		return signature, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    	for {
    		RawSyscall(SYS_EXIT, 253, 0, 0)
    	}
    }
    
    func formatIDMappings(idMap []SysProcIDMap) []byte {
    	var data []byte
    	for _, im := range idMap {
    		data = append(data, itoa.Itoa(im.ContainerID)+" "+itoa.Itoa(im.HostID)+" "+itoa.Itoa(im.Size)+"\n"...)
    	}
    	return data
    }
    
    // writeIDMappings writes the user namespace User ID or Group ID mappings to the specified path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/internal/poll/fd_unix.go

    				// some VPN software. Issue #61060.
    				// If we don't check this we will panic
    				// with slice bounds out of range.
    				// Use a more informative panic.
    				panic("invalid return from write: got " + itoa.Itoa(n) + " from a write of " + itoa.Itoa(max-nn))
    			}
    			nn += n
    		}
    		if nn == len(p) {
    			return nn, err
    		}
    		if err == syscall.EAGAIN && fd.pd.pollable() {
    			if err = fd.pd.waitWrite(fd.isFile); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/net/lookup_plan9.go

    }
    
    func queryCS1(ctx context.Context, net string, ip IP, port int) (clone, dest string, err error) {
    	ips := "*"
    	if len(ip) != 0 && !ip.IsUnspecified() {
    		ips = ip.String()
    	}
    	lines, err := queryCS(ctx, net, ips, itoa.Itoa(port))
    	if err != nil {
    		return
    	}
    	f := getFields(lines[0])
    	if len(f) < 2 {
    		return "", "", errors.New("bad response from ndb/cs")
    	}
    	clone, dest = f[0], f[1]
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux.go

    }
    
    func Futimes(fd int, tv []Timeval) (err error) {
    	// Believe it or not, this is the best we can do on Linux
    	// (and is what glibc does).
    	return Utimes("/proc/self/fd/"+itoa.Itoa(fd), tv)
    }
    
    const ImplementsGetwd = true
    
    //sys	Getcwd(buf []byte) (n int, err error)
    
    func Getwd() (wd string, err error) {
    	var buf [PathMax]byte
    	n, err := Getcwd(buf[0:])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top