Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for pmap (0.04 sec)

  1. src/cmd/internal/obj/objfile.go

    		o.SetSym(symref)
    		o.SetName(rs.Name, w.Writer)
    		o.Write(w.Writer)
    	})
    	// TODO: output in sorted order?
    	// Currently tools (cmd/internal/goobj package) doesn't use mmap,
    	// and it just read it into a map in memory upfront. If it uses
    	// mmap, if the output is sorted, it probably could avoid reading
    	// into memory and just do lookups in the mmap'd object file.
    }
    
    // return the number of aux symbols s have.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/syscall/syscall_darwin.go

    //sys	Unlink(path string) (err error)
    //sys	Unmount(path string, flags int) (err error)
    //sys	write(fd int, p []byte) (n int, err error)
    //sys	writev(fd int, iovecs []Iovec) (cnt uintptr, err error)
    //sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
    //sys   munmap(addr uintptr, length uintptr) (err error)
    //sysnb fork() (pid int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    		// _Chan _Comm ntype
    		p.next()
    		t := new(ChanType)
    		t.pos = pos
    		if p.got(_Arrow) {
    			t.Dir = SendOnly
    		}
    		t.Elem = p.chanElem()
    		return t
    
    	case _Map:
    		// _Map '[' ntype ']' ntype
    		p.next()
    		p.want(_Lbrack)
    		t := new(MapType)
    		t.pos = pos
    		t.Key = p.type_()
    		p.want(_Rbrack)
    		t.Value = p.type_()
    		return t
    
    	case _Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    	}
    
    	info.StatsSummary = make(map[string]madmin.SRSiteSummary, len(c.state.Peers))
    	info.BucketStats = make(map[string]map[string]srBucketStatsSummary)
    	info.PolicyStats = make(map[string]map[string]srPolicyStatsSummary)
    	info.UserStats = make(map[string]map[string]srUserStatsSummary)
    	info.GroupStats = make(map[string]map[string]srGroupStatsSummary)
    	info.ILMExpiryRulesStats = make(map[string]map[string]srILMExpiryRuleStatsSummary)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    			}
    			cmap := xdstest.ExtractClusters(clusters)
    			got := xdstest.MapKeys(cmap)
    
    			// Check we have all expected clusters
    			if !reflect.DeepEqual(xdstest.MapKeys(tt.clusters), got) {
    				t.Errorf("expected clusters: %v, got: %v", xdstest.MapKeys(tt.clusters), got)
    			}
    
    			for cname, c := range cmap {
    				// Check the upstream endpoints match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_arm.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_openbsd_riscv64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_openbsd_amd64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_arm64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
Back to top