Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 208 for iota (0.14 sec)

  1. src/image/draw/draw.go

    	Quantize(p color.Palette, m image.Image) color.Palette
    }
    
    // Op is a Porter-Duff compositing operator.
    type Op int
    
    const (
    	// Over specifies ``(src in mask) over dst''.
    	Over Op = iota
    	// Src specifies ``src in mask''.
    	Src
    )
    
    // Draw implements the [Drawer] interface by calling the Draw function with this
    // [Op].
    func (op Op) Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    var machohdr MachoHdr
    
    var load []MachoLoad
    
    var machoPlatform MachoPlatform
    
    var seg [16]MachoSeg
    
    var nseg int
    
    var ndebug int
    
    var nsect int
    
    const (
    	SymKindLocal = 0 + iota
    	SymKindExtdef
    	SymKindUndef
    	NumSymKind
    )
    
    var nkind [NumSymKind]int
    
    var sortsym []loader.Sym
    
    var nsortsym int
    
    // Amount of space left for adding load commands
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/net/url/url.go

    		return c - '0'
    	case 'a' <= c && c <= 'f':
    		return c - 'a' + 10
    	case 'A' <= c && c <= 'F':
    		return c - 'A' + 10
    	}
    	return 0
    }
    
    type encoding int
    
    const (
    	encodePath encoding = 1 + iota
    	encodePathSegment
    	encodeHost
    	encodeZone
    	encodeUserPassword
    	encodeQueryComponent
    	encodeFragment
    )
    
    type EscapeError string
    
    func (e EscapeError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. src/flag/flag.go

    // ErrorHandling defines how [FlagSet.Parse] behaves if the parse fails.
    type ErrorHandling int
    
    // These constants cause [FlagSet.Parse] to behave as described if the parse fails.
    const (
    	ContinueOnError ErrorHandling = iota // Return a descriptive error.
    	ExitOnError                          // Call os.Exit(2) or for -h/-help Exit(0).
    	PanicOnError                         // Call panic with a descriptive error.
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. src/internal/poll/fd_windows.go

    	isFile bool
    
    	// The kind of this file.
    	kind fileKind
    }
    
    // fileKind describes the kind of file.
    type fileKind byte
    
    const (
    	kindNet fileKind = iota
    	kindFile
    	kindConsole
    	kindPipe
    )
    
    // logInitFD is set by tests to enable file descriptor initialization logging.
    var logInitFD func(net string, fd *FD, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/modfile.go

    // are pruned out of the module subgraph rooted at a given module.
    // (See https://golang.org/ref/mod#graph-pruning.)
    type modPruning uint8
    
    const (
    	pruned    modPruning = iota // transitive dependencies of modules at go 1.17 and higher are pruned out
    	unpruned                    // no transitive dependencies are pruned out
    	workspace                   // pruned to the union of modules in the workspace
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    		return s.src[s.rdOffset]
    	}
    	return 0
    }
    
    // A mode value is a set of flags (or 0).
    // They control scanner behavior.
    type Mode uint
    
    const (
    	ScanComments    Mode = 1 << iota // return comments as COMMENT tokens
    	dontInsertSemis                  // do not automatically insert semicolons - for testing only
    )
    
    // Init prepares the scanner s to tokenize the text src by setting the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	"time"
    	"unicode/utf8"
    )
    
    type InvalidReason int
    
    const (
    	// NotAuthorizedToSign results when a certificate is signed by another
    	// which isn't marked as a CA certificate.
    	NotAuthorizedToSign InvalidReason = iota
    	// Expired results when a certificate has expired, based on the time
    	// given in the VerifyOptions.
    	Expired
    	// CANotAuthorizedForThisName results when an intermediate or root
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/sym.go

    // as to avoid inserting them into the linker's name lookup tables.
    const StaticNamePref = ".stmp_"
    
    type traverseFlag uint32
    
    const (
    	traverseDefs traverseFlag = 1 << iota
    	traverseRefs
    	traverseAux
    	traversePcdata
    
    	traverseAll = traverseDefs | traverseRefs | traverseAux | traversePcdata
    )
    
    // Traverse symbols based on flag, call fn for each symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/obj6.go

    		return false
    	}
    	return addrUsesGlobal(&p.From) || addrUsesGlobal(&p.To) || addrUsesGlobal(p.GetFrom3())
    }
    
    type rwMask int
    
    const (
    	readFrom rwMask = 1 << iota
    	readTo
    	readReg
    	readFrom3
    	writeFrom
    	writeTo
    	writeReg
    	writeFrom3
    )
    
    // progRW returns a mask describing the effects of the instruction p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
Back to top