Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Cota (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	}
    	log.Fatalf("Error no pfxstore for %v\n", a)
    	return 0, 0
    }
    
    func oclass(a *obj.Addr) int {
    	return int(a.Class) - 1
    }
    
    const (
    	D_FORM = iota
    	DS_FORM
    )
    
    // This function determines when a non-indexed load or store is D or
    // DS form for use in finding the size of the offset field in the instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	sizeSS2  = 6
    	sizeSS3  = 6
    	sizeSS4  = 6
    	sizeSS5  = 6
    	sizeSS6  = 6
    	sizeSSE  = 6
    	sizeSSF  = 6
    )
    
    // instruction format variations
    type form int
    
    const (
    	_a form = iota
    	_b
    	_c
    	_d
    	_e
    	_f
    )
    
    func zE(op uint32, asm *[]byte) {
    	*asm = append(*asm, uint8(op>>8), uint8(op))
    }
    
    func zI(op, i1 uint32, asm *[]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    }
    
    func MOVCONST(d int64, s int, rt int) uint32 {
    	return uint32(((d>>uint(s*16))&0xFFFF)<<5) | uint32(s)&3<<21 | uint32(rt&31)
    }
    
    const (
    	// Optab.flag
    	LFROM        = 1 << iota // p.From uses constant pool
    	LTO                      // p.To uses constant pool
    	NOTUSETMP                // p expands to multiple instructions, but does NOT use REGTMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. 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)
  10. doc/go1.17_spec.html

    	b = 1 &lt;&lt; iota  // b == 2  (iota == 1)
    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 &lt;&lt; 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)
Back to top