Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Basic (0.19 sec)

  1. api/go1.5.txt

    pkg go/types, method (*Array) String() string
    pkg go/types, method (*Array) Underlying() Type
    pkg go/types, method (*Basic) Info() BasicInfo
    pkg go/types, method (*Basic) Kind() BasicKind
    pkg go/types, method (*Basic) Name() string
    pkg go/types, method (*Basic) String() string
    pkg go/types, method (*Basic) Underlying() Type
    pkg go/types, method (*Builtin) Exported() bool
    pkg go/types, method (*Builtin) Id() string
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    Once the _cgo_export.c and *.cgo2.c files have been compiled with gcc,
    they need to be linked into the final binary, along with the libraries
    they might depend on (in the case of puts, stdio). cmd/link has been
    extended to understand basic ELF files, but it does not understand ELF
    in the full complexity that modern C libraries embrace, so it cannot
    in general generate direct references to the system libraries.
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    // This input extends auto-generated amd64enc.s test suite
    // with manually added tests.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// AVX2GATHER: basic combinations.
    	VPGATHERDQ Y2, (BP)(X7*2), Y1           // c4e2ed904c7d00
    	VPGATHERDQ X12, (R13)(X14*2), X11       // c40299905c7500
    	VPGATHERDQ Y12, (R13)(X14*2), Y11       // c4029d905c7500
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  4. src/archive/tar/common.go

    			} else {
    				paxHdrs[paxKey] = formatPAXTime(ts)
    			}
    		}
    		if v, ok := h.PAXRecords[paxKey]; ok && v == formatPAXTime(ts) {
    			paxHdrs[paxKey] = v
    		}
    	}
    
    	// Check basic fields.
    	var blk block
    	v7 := blk.toV7()
    	ustar := blk.toUSTAR()
    	gnu := blk.toGNU()
    	verifyString(h.Name, len(v7.name()), "Name", paxPath)
    	verifyString(h.Linkname, len(v7.linkName()), "Linkname", paxLinkpath)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  5. src/cmd/cgo/gcc.go

    			// Don't override old type
    			if _, ok := typedef[name.Name]; ok {
    				break
    			}
    
    			// Size calculation in c.Struct/c.Opaque will die with size=-1 (unknown),
    			// so execute the basic things that the struct case would do
    			// other than try to determine a Go representation.
    			tt := *t
    			tt.C = &TypeRepr{"%s %s", []interface{}{dt.Kind, tag}}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. doc/go_spec.html

    where a type element is a union of one or more <i>type terms</i>.
    A type term is either a single type or a single underlying type.
    </p>
    
    <h4 id="Basic_interfaces">Basic interfaces</h4>
    
    <p>
    In its most basic form an interface specifies a (possibly empty) list of methods.
    The type set defined by such an interface is the set of types which implement all of
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg debug/dwarf, method (*ArrayType) String() string
    pkg debug/dwarf, method (*BasicType) Basic() *BasicType
    pkg debug/dwarf, method (*BasicType) Common() *CommonType
    pkg debug/dwarf, method (*BasicType) Size() int64
    pkg debug/dwarf, method (*BasicType) String() string
    pkg debug/dwarf, method (*BoolType) Basic() *BasicType
    pkg debug/dwarf, method (*BoolType) Common() *CommonType
    pkg debug/dwarf, method (*BoolType) Size() int64
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SH3ADDUW	X16, X17			// bbe80821
    	SLLIUW		$31, X17, X18			// 1b99f809
    	SLLIUW		$63, X17			// 9b98f80b
    	SLLIUW		$63, X17, X18			// 1b99f80b
    	SLLIUW		$1, X18, X19			// 9b191908
    
    	// 1.2: Basic Bit Manipulation (Zbb)
    	ANDN	X19, X20, X21				// b37a3a41
    	ANDN	X19, X20				// 337a3a41
    	CLZ	X20, X21				// 931a0a60
    	CLZW	X21, X22				// 1b9b0a60
    	CPOP	X22, X23				// 931b2b60
    	CPOPW	X23, X24				// 1b9c2b60
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/archive/zip/reader.go

    	needCSize := f.CompressedSize == ^uint32(0)
    	needHeaderOffset := f.headerOffset == int64(^uint32(0))
    
    	// Best effort to find what we need.
    	// Other zip authors might not even follow the basic format,
    	// and we'll just ignore the Extra content in that case.
    	var modified time.Time
    parseExtras:
    	for extra := readBuf(f.Extra); len(extra) >= 4; { // need at least tag and size
    		fieldTag := extra.uint16()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE_TS = 3
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASE = 1
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_EV = 8
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_MICROSOFT_ROOT = 7
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_NT_AUTH = 6
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top