Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 103 for iota (0.05 sec)

  1. src/cmd/compile/internal/types2/unify.go

    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    	// made identical with suitable arguments for type parameters).
    	// Otherwise, a named type and a type literal unify if their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/object.go

    type color uint32
    
    // An object may be painted in one of three colors.
    // Color values other than white or black are considered grey.
    const (
    	white color = iota
    	black
    	grey // must be > white and black
    )
    
    func (c color) String() string {
    	switch c {
    	case white:
    		return "white"
    	case black:
    		return "black"
    	default:
    		return "grey"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    	if s.releasetime != 0 {
    		s.releasetime = cputicks()
    	}
    	goready(s.g, traceskip)
    }
    
    type semaProfileFlags int
    
    const (
    	semaBlockProfile semaProfileFlags = 1 << iota
    	semaMutexProfile
    )
    
    // Called from runtime.
    func semacquire(addr *uint32) {
    	semacquire1(addr, false, 0, 0, waitReasonSemacquire)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/read.go

    	onceReadImports sync.Once
    	savedImports    []rawImport // saved imports so that they're only read once
    }
    
    // Offsets for fields in the sourceFile.
    const (
    	sourceFileError = 4 * iota
    	sourceFileParseError
    	sourceFileSynopsis
    	sourceFileName
    	sourceFilePkgName
    	sourceFileIgnoreFile
    	sourceFileBinaryOnly
    	sourceFileCgoDirectives
    	sourceFileGoBuildConstraint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    	// made identical with suitable arguments for type parameters).
    	// Otherwise, a named type and a type literal unify if their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/net/http/fs.go

    }
    
    // condResult is the result of an HTTP request precondition check.
    // See https://tools.ietf.org/html/rfc7232 section 3.
    type condResult int
    
    const (
    	condNone condResult = iota
    	condTrue
    	condFalse
    )
    
    func checkIfMatch(w ResponseWriter, r *Request) condResult {
    	im := r.Header.Get("If-Match")
    	if im == "" {
    		return condNone
    	}
    	for {
    		im = textproto.TrimString(im)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.go

    		return ""
    	}
    	return string(js)
    }
    
    // BuildMode specifies the build mode:
    // are we just building things or also installing the results?
    type BuildMode int
    
    const (
    	ModeBuild BuildMode = iota
    	ModeInstall
    	ModeBuggyInstall
    
    	ModeVetOnly = 1 << 8
    )
    
    // NewBuilder returns a new Builder ready for use.
    //
    // If workDir is the empty string, NewBuilder creates a WorkDir if needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/net/textproto/reader.go

    func (d *dotReader) Read(b []byte) (n int, err error) {
    	// Run data through a simple state machine to
    	// elide leading dots, rewrite trailing \r\n into \n,
    	// and detect ending .\r\n line.
    	const (
    		stateBeginLine = iota // beginning of line; initial state; must be zero
    		stateDot              // read . at beginning of line
    		stateDotCR            // read .\r at beginning of line
    		stateCR               // read \r (possibly at end of line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/go/ast/filter.go

    // The MergeMode flags control the behavior of [MergePackageFiles].
    type MergeMode uint
    
    const (
    	// If set, duplicate function declarations are excluded.
    	FilterFuncDuplicates MergeMode = 1 << iota
    	// If set, comments that are not associated with a specific
    	// AST node (as Doc or Comment) are excluded.
    	FilterUnassociatedComments
    	// If set, duplicate import declarations are excluded.
    	FilterImportDuplicates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/net/http/cookie.go

    // some protection against cross-site request forgery attacks.
    //
    // See https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00 for details.
    type SameSite int
    
    const (
    	SameSiteDefaultMode SameSite = iota + 1
    	SameSiteLaxMode
    	SameSiteStrictMode
    	SameSiteNoneMode
    )
    
    var (
    	errBlankCookie           = errors.New("http: blank cookie")
    	errEqualNotFoundInCookie = errors.New("http: '=' not found in cookie")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top