Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for perf (0.2 sec)

  1. misc/wasm/wasm_exec.js

    			lchown(path, uid, gid, callback) { callback(enosys()); },
    			link(path, link, callback) { callback(enosys()); },
    			lstat(path, callback) { callback(enosys()); },
    			mkdir(path, perm, callback) { callback(enosys()); },
    			open(path, flags, mode, callback) { callback(enosys()); },
    			read(fd, buffer, offset, length, position, callback) { callback(enosys()); },
    			readdir(path, callback) { callback(enosys()); },
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_ERF = 197
    pkg syscall (netbsd-arm64-cgo), const DLT_ERF_ETH = 175
    pkg syscall (netbsd-arm64-cgo), const DLT_ERF_ETH ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_ERF ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_ERF_POS = 176
    pkg syscall (netbsd-arm64-cgo), const DLT_ERF_POS ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_FC_2 = 224
    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)
  3. doc/go1.17_spec.html

    <code>len(x)</code> is <a href="#Length_and_capacity">constant</a>,
    the range expression is not evaluated.
    </p>
    
    <p>
    Function calls on the left are evaluated once per iteration.
    For each iteration, iteration values are produced as follows
    if the respective iteration variables are present:
    </p>
    
    <pre class="grammar">
    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)
  4. .github/ISSUE_TEMPLATE/11-language-change.yml

          label: Changes to Go ToolChain
          description: "How many tools (such as vet, gopls, gofmt, goimports, etc.) would be affected? "
        validations:
          required: false
    
      - type: input
        id: perf-costs
        attributes:
          label: Performance Costs
          description: "What is the compile time cost? What is the run time cost? "
        validations:
          required: false
    
      - type: textarea
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (linux-386), const PR_SET_TIMING = 14
    pkg syscall (linux-386), const PR_SET_TSC = 26
    pkg syscall (linux-386), const PR_SET_UNALIGN = 6
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE = 31
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE = 32
    pkg syscall (linux-386), const PR_TIMING_STATISTICAL = 0
    pkg syscall (linux-386), const PR_TIMING_TIMESTAMP = 1
    pkg syscall (linux-386), const PR_TSC_ENABLE = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (linux-386), const PR_SET_TSC ideal-int
    pkg syscall (linux-386), const PR_SET_UNALIGN ideal-int
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE ideal-int
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE ideal-int
    pkg syscall (linux-386), const PR_TIMING_STATISTICAL ideal-int
    pkg syscall (linux-386), const PR_TIMING_TIMESTAMP ideal-int
    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)
  7. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_SET_TSC ideal-int
    pkg syscall (linux-arm-cgo), const PR_SET_UNALIGN ideal-int
    pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_DISABLE ideal-int
    pkg syscall (linux-arm-cgo), const PR_TASK_PERF_EVENTS_ENABLE ideal-int
    pkg syscall (linux-arm-cgo), const PR_TIMING_STATISTICAL ideal-int
    pkg syscall (linux-arm-cgo), const PR_TIMING_TIMESTAMP ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. src/cmd/cgo/internal/cgotest/overlaydir.go

    		for len(suffix) > 0 && suffix[0] == filepath.Separator {
    			suffix = suffix[1:]
    		}
    		dstPath := filepath.Join(dstRoot, suffix)
    
    		perm := info.Mode() & os.ModePerm
    		if info.Mode()&os.ModeSymlink != 0 {
    			info, err = os.Stat(srcPath)
    			if err != nil {
    				return err
    			}
    			perm = info.Mode() & os.ModePerm
    		}
    
    		// Always copy directories (don't symlink them).
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 20:56:09 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/archive/tar/strconv.go

    	// spaces or NULs.
    	// So we remove leading and trailing NULs and spaces to
    	// be sure.
    	b = bytes.Trim(b, " \x00")
    
    	if len(b) == 0 {
    		return 0
    	}
    	x, perr := strconv.ParseUint(p.parseString(b), 8, 64)
    	if perr != nil {
    		p.err = ErrHeader
    	}
    	return int64(x)
    }
    
    func (f *formatter) formatOctal(b []byte, x int64) {
    	if !fitsInOctal(len(b), x) {
    		x = 0 // Last resort, just write zero
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg debug/elf, const DT_MIPS_MSYM DynTag
    pkg debug/elf, const DT_MIPS_OPTIONS = 1879048233
    pkg debug/elf, const DT_MIPS_OPTIONS DynTag
    pkg debug/elf, const DT_MIPS_PERF_SUFFIX = 1879048238
    pkg debug/elf, const DT_MIPS_PERF_SUFFIX DynTag
    pkg debug/elf, const DT_MIPS_PIXIE_INIT = 1879048227
    pkg debug/elf, const DT_MIPS_PIXIE_INIT DynTag
    pkg debug/elf, const DT_MIPS_PLTGOT = 1879048242
    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)
Back to top