Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for iota (0.17 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/vendor/golang.org/x/text/unicode/norm/normalize.go

    // proceed independently on both sides:
    //
    //	f(x) == append(f(x[0:n]), f(x[n:])...)
    //
    // References: https://unicode.org/reports/tr15/ and
    // https://unicode.org/notes/tn5/.
    type Form int
    
    const (
    	NFC Form = iota
    	NFD
    	NFKC
    	NFKD
    )
    
    // Bytes returns f(b). May return b if f(b) = b.
    func (f Form) Bytes(b []byte) []byte {
    	src := inputBytes(b)
    	ft := formTable[f]
    	n, ok := ft.quickSpan(src, 0, len(b), true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package objabi
    
    type RelocType int16
    
    //go:generate stringer -type=RelocType
    const (
    	R_ADDR RelocType = 1 + iota
    	// R_ADDRPOWER relocates a pair of "D-form" instructions (instructions with 16-bit
    	// immediates in the low half of the instruction word), usually addis followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    	refs    map[string]string
    	refsErr error
    
    	localTagsOnce sync.Once
    	localTags     sync.Map // map[string]bool
    }
    
    const (
    	// How much have we fetched into the git repo (in this process)?
    	fetchNone = iota // nothing yet
    	fetchSome        // shallow fetches of individual hashes
    	fetchAll         // "fetch -t origin": get all remote branches and tags
    )
    
    // loadLocalTags loads tag references from the local git cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. 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)
  6. src/math/big/float.go

    const (
    	zero form = iota
    	finite
    	inf
    )
    
    // RoundingMode determines how a [Float] value is rounded to the
    // desired precision. Rounding may change the [Float] value; the
    // rounding error is described by the [Float]'s [Accuracy].
    type RoundingMode byte
    
    // These constants define supported rounding modes.
    const (
    	ToNearestEven RoundingMode = iota // == IEEE 754-2008 roundTiesToEven
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K 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/go/ast/ast.go

    		Value Expr
    	}
    )
    
    // The direction of a channel type is indicated by a bit
    // mask including one or both of the following constants.
    type ChanDir int
    
    const (
    	SEND ChanDir = 1 << iota
    	RECV
    )
    
    // A type is represented by a tree consisting of one
    // or more of the following type-specific expression
    // nodes.
    type (
    	// An ArrayType node represents an array or slice type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    		}
    
    		types.SkipSizeForTracing = true
    		defer func() { types.SkipSizeForTracing = false }()
    		fmt.Printf("%s: %s=> %p %s %v tc=%d type=%L\n", pos, indent, n, op, n, tc, typ)
    	}
    }
    
    const (
    	ctxStmt    = 1 << iota // evaluated at statement level
    	ctxExpr                // evaluated in value context
    	ctxType                // evaluated in type context
    	ctxCallee              // call-only expressions are ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. 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)
Back to top