Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 228 for iota (0.07 sec)

  1. 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)
  2. src/debug/dwarf/entry.go

    // offsets to one of the Class*Ptr classes, even though these classes
    // were only defined in DWARF 3.
    type Class int
    
    const (
    	// ClassUnknown represents values of unknown DWARF class.
    	ClassUnknown Class = iota
    
    	// ClassAddress represents values of type uint64 that are
    	// addresses on the target machine.
    	ClassAddress
    
    	// ClassBlock represents values of type []byte whose
    	// interpretation depends on the attribute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/term/terminal.go

    		m = append(m, keyEscape, '[', 'A')
    	} else if up > 1 {
    		m = append(m, keyEscape, '[')
    		m = append(m, []rune(strconv.Itoa(up))...)
    		m = append(m, 'A')
    	}
    
    	if down == 1 {
    		m = append(m, keyEscape, '[', 'B')
    	} else if down > 1 {
    		m = append(m, keyEscape, '[')
    		m = append(m, []rune(strconv.Itoa(down))...)
    		m = append(m, 'B')
    	}
    
    	if right == 1 {
    		m = append(m, keyEscape, '[', 'C')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.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