Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 228 for iota (0.06 sec)

  1. src/go/internal/gcimporter/iimport.go

    	iexportVersionCurrent = 2
    )
    
    type ident struct {
    	pkg  *types.Package
    	name string
    }
    
    const predeclReserved = 32
    
    type itag uint64
    
    const (
    	// Types
    	definedType itag = iota
    	pointerType
    	sliceType
    	arrayType
    	chanType
    	mapType
    	signatureType
    	structType
    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    	// Attempt to return this logger to the cache.
    	if putCachedDlogger(l) {
    		return
    	}
    
    	// Return the logger to the global pool.
    	l.owned.Store(0)
    }
    
    const (
    	debugLogUnknown = 1 + iota
    	debugLogBoolTrue
    	debugLogBoolFalse
    	debugLogInt
    	debugLogUint
    	debugLogHex
    	debugLogPtr
    	debugLogString
    	debugLogConstString
    	debugLogStringOverflow
    
    	debugLogPC
    	debugLogTraceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    	off += secs
    
    	if neg {
    		off = -off
    	}
    	return off, s, true
    }
    
    // ruleKind is the kinds of rules that can be seen in a tzset string.
    type ruleKind int
    
    const (
    	ruleJulian ruleKind = iota
    	ruleDOY
    	ruleMonthWeekDay
    )
    
    // rule is a rule read from a tzset string.
    type rule struct {
    	kind ruleKind
    	day  int
    	week int
    	mon  int
    	time int // transition time
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    	bs[idx/uintSize] &^= 1 << (idx % uintSize)
    }
    
    func (bs bitset) Test(idx uint32) bool {
    	return bs[idx/uintSize]&(1<<(idx%uintSize)) != 0
    }
    
    type undoType uint8
    
    const (
    	undoInvalid     undoType = iota
    	undoCheckpoint           // a checkpoint to group undo passes
    	undoSetChl               // change back left child of undo.idx to undo.edge
    	undoSetChr               // change back right child of undo.idx to undo.edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. src/text/template/funcs.go

    	errBadComparison     = errors.New("incompatible types for comparison")
    	errNoComparison      = errors.New("missing argument for comparison")
    )
    
    type kind int
    
    const (
    	invalidKind kind = iota
    	boolKind
    	complexKind
    	intKind
    	floatKind
    	stringKind
    	uintKind
    )
    
    func basicKind(v reflect.Value) (kind, error) {
    	switch v.Kind() {
    	case reflect.Bool:
    		return boolKind, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		}
    
    		lastMems[b.ID] = last
    	}
    	return lastMems
    }
    
    // mark values
    type markKind uint8
    
    const (
    	notFound    markKind = iota // block has not been discovered yet
    	notExplored                 // discovered and in queue, outedges not processed yet
    	explored                    // discovered and in queue, outedges processed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. src/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: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/lookup.go

    	methods := under(T).(*Interface).typeSet().methods // T must be an interface
    	if len(methods) == 0 {
    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		if err := c.ops.WriteConfig(c.name+"/latest", msg, latestMsg); err != ErrWriteConflict {
    			// Success or a non-write-conflict error.
    			return err
    		}
    	}
    }
    
    const (
    	msgPast = 1 + iota
    	msgNow
    	msgFuture
    )
    
    // mergeLatestMem is like mergeLatest but is only concerned with
    // updating the in-memory copy of the latest tree head (c.latest)
    // not the configuration file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/go/types/lookup.go

    	methods := under(T).(*Interface).typeSet().methods // T must be an interface
    	if len(methods) == 0 {
    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top