Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for iota (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x020
    	FILE_NOTIFY_CHANGE_CREATION    = 0x040
    	FILE_NOTIFY_CHANGE_SECURITY    = 0x100
    )
    
    const (
    	// do not reorder
    	FILE_ACTION_ADDED = iota + 1
    	FILE_ACTION_REMOVED
    	FILE_ACTION_MODIFIED
    	FILE_ACTION_RENAMED_OLD_NAME
    	FILE_ACTION_RENAMED_NEW_NAME
    )
    
    const (
    	// wincrypt.h
    	/* certenrolld_begin -- PROV_RSA_*/
    	PROV_RSA_FULL      = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    	b = 1 << iota  // b == 2  (iota == 1)
    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 << iota  // d == 8  (iota == 3)
    )
    
    const (
    	u         = iota * 42  // u == 0     (untyped integer constant)
    	v float64 = iota * 42  // v == 42.0  (float64 constant)
    	w         = iota * 42  // w == 84    (untyped integer constant)
    )
    
    const x = iota  // x == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⁣":                  "\u2063",
    	"⁢":                  "\u2062",
    	"Į":                           "\u012e",
    	"𝕀":                            "\U0001d540",
    	"Ι":                            "\u0399",
    	"ℐ":                            "\u2110",
    	"Ĩ":                          "\u0128",
    	"І":                           "\u0406",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	maxLoopPad = 0
    )
    
    // Bit flags that are used to express jump target properties.
    const (
    	// branchBackwards marks targets that are located behind.
    	// Used to express jumps to loop headers.
    	branchBackwards = (1 << iota)
    	// branchShort marks branches those target is close,
    	// with offset is in -128..127 range.
    	branchShort
    	// branchLoopHead marks loop entry.
    	// Used to insert padding for misaligned loops.
    	branchLoopHead
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    // If a driver does not support a given isolation level an error may be returned.
    //
    // See https://en.wikipedia.org/wiki/Isolation_(database_systems)#Isolation_levels.
    const (
    	LevelDefault IsolationLevel = iota
    	LevelReadUncommitted
    	LevelReadCommitted
    	LevelWriteCommitted
    	LevelRepeatableRead
    	LevelSnapshot
    	LevelSerializable
    	LevelLinearizable
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	// gets recorded as the canonical import path. At that point, future loads
    	// of that package must not pass ResolveImport, because
    	// disallowVendor will reject direct use of paths containing /vendor/.
    	ResolveImport = 1 << iota
    
    	// ResolveModule is for download (part of "go get") and indicates
    	// that the module adjustment should be done, but not vendor adjustment.
    	ResolveModule
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/reflect/value.go

    }
    
    // convertOp: []T -> *[N]T
    func cvtSliceArrayPtr(v Value, t Type) Value {
    	n := t.Elem().Len()
    	if n > v.Len() {
    		panic("reflect: cannot convert slice with length " + itoa.Itoa(v.Len()) + " to pointer to array with length " + itoa.Itoa(n))
    	}
    	h := (*unsafeheader.Slice)(v.ptr)
    	return Value{t.common(), h.Data, v.flag&^(flagIndir|flagAddr|flagKindMask) | flag(Pointer)}
    }
    
    // convertOp: []T -> [N]T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/net/http/server.go

    const (
    	// StateNew represents a new connection that is expected to
    	// send a request immediately. Connections begin at this
    	// state and then transition to either StateActive or
    	// StateClosed.
    	StateNew ConnState = iota
    
    	// StateActive represents a connection that has read 1 or more
    	// bytes of a request. The Server.ConnState hook for
    	// StateActive fires before the request has entered a handler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // unnecessary parentheses when printing expressions in the LLVM style.
    type precedence int
    
    // The precedence values, in order from high to low.
    const (
    	precPrimary precedence = iota
    	precPostfix
    	precUnary
    	precCast
    	precPtrMem
    	precMul
    	precAdd
    	precShift
    	precSpaceship
    	precRel
    	precEqual
    	precAnd
    	precXor
    	precOr
    	precLogicalAnd
    	precLogicalOr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    			print(string(fmtNSAsMS(sbuf[:], uint64(start-runtimeInitTime))), " ms, ")
    			print(string(fmtNSAsMS(sbuf[:], uint64(end-start))), " ms clock, ")
    			print(string(itoa(sbuf[:], after.bytes-before.bytes)), " bytes, ")
    			print(string(itoa(sbuf[:], after.allocs-before.allocs)), " allocs")
    			print("\n")
    		}
    
    		t.state = 2 // initialization done
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top