Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for emberA (0.21 sec)

  1. api/go1.20.txt

    pkg log/syslog (freebsd-riscv64), const LOG_DEBUG = 7 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_DEBUG Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_EMERG = 0 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_EMERG Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_ERR = 3 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_ERR Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_FTP = 88 #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    	possibly version in the dynamic library, and the optional "<library>"
    	names the specific library where the symbol should be found.
    
    	On AIX, the library pattern is slightly different. It must be
    	"lib.a/obj.o" with obj.o the member of this library exporting
    	this symbol.
    
    	In the <remote>, # or @ can be used to introduce a symbol version.
    
    	Examples:
    	//go:cgo_import_dynamic puts
    	//go:cgo_import_dynamic puts puts#GLIBC_2.2.5
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/ast.go

    	// local C.
    	if l, ok := sel.X.(*ast.Ident); !ok || l.Name != "C" {
    		return
    	}
    	if context == ctxAssign2 {
    		context = ctxExpr
    	}
    	if context == ctxEmbedType {
    		error_(sel.Pos(), "cannot embed C type")
    	}
    	goname := sel.Sel.Name
    	if goname == "errno" {
    		error_(sel.Pos(), "cannot refer to errno directly; see documentation")
    		return
    	}
    	if goname == "_CMalloc" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg log/syslog (netbsd-arm64-cgo), const LOG_DEBUG = 7
    pkg log/syslog (netbsd-arm64-cgo), const LOG_DEBUG Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG = 0
    pkg log/syslog (netbsd-arm64-cgo), const LOG_EMERG Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR = 3
    pkg log/syslog (netbsd-arm64-cgo), const LOG_ERR Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_FTP = 88
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    }
    </pre>
    
    <p>
    An interface type <code>T</code> may not embed itself
    or any interface type that embeds <code>T</code>, recursively.
    </p>
    
    <pre>
    // illegal: Bad cannot embed itself
    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 cannot embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    </pre>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/buildid/buildid.go

    	f, err := os.Open(file)
    	if err != nil {
    		log.Fatal(err)
    	}
    	matches, hash, err := buildid.FindAndHash(f, id, 0)
    	f.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// <= go 1.7 doesn't embed the contentID or actionID, so no slash is present
    	if !strings.Contains(id, "/") {
    		log.Fatalf("%s: build ID is a legacy format...binary too old for this tool", file)
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 06 14:30:53 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    			// flag to disable the warning. Yes, really good diagnostics, clang.
    			"-Wno-unknown-warning-option",
    			"-Wno-unneeded-internal-declaration",
    			"-Wno-unused-function",
    			"-Qunused-arguments",
    			// Clang embeds prototypes for some builtin functions,
    			// like malloc and calloc, but all size_t parameters are
    			// incorrectly typed unsigned long. We work around that
    			// by disabling the builtin functions (this is safe as
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.16.txt

    pkg debug/elf, const PT_SUNW_EH_FRAME = 1685382480
    pkg debug/elf, const PT_SUNW_EH_FRAME ProgType
    pkg embed, method (FS) Open(string) (fs.File, error)
    pkg embed, method (FS) ReadDir(string) ([]fs.DirEntry, error)
    pkg embed, method (FS) ReadFile(string) ([]uint8, error)
    pkg embed, type FS struct
    pkg flag, func Func(string, string, func(string) error)
    pkg flag, method (*FlagSet) Func(string, string, func(string) error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg log/syslog (darwin-386), const LOG_ALERT Priority
    pkg log/syslog (darwin-386), const LOG_CRIT Priority
    pkg log/syslog (darwin-386), const LOG_DEBUG Priority
    pkg log/syslog (darwin-386), const LOG_EMERG Priority
    pkg log/syslog (darwin-386), const LOG_ERR Priority
    pkg log/syslog (darwin-386), const LOG_INFO Priority
    pkg log/syslog (darwin-386), const LOG_NOTICE Priority
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. api/go1.14.txt

    pkg log/syslog (freebsd-arm64), const LOG_DEBUG = 7
    pkg log/syslog (freebsd-arm64), const LOG_DEBUG Priority
    pkg log/syslog (freebsd-arm64), const LOG_EMERG = 0
    pkg log/syslog (freebsd-arm64), const LOG_EMERG Priority
    pkg log/syslog (freebsd-arm64), const LOG_ERR = 3
    pkg log/syslog (freebsd-arm64), const LOG_ERR Priority
    pkg log/syslog (freebsd-arm64), const LOG_FTP = 88
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top