Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 365 for Nname (0.04 sec)

  1. src/plugin/plugin_dlopen.go

    	if h == 0 {
    		pluginsMu.Unlock()
    		return nil, errors.New(`plugin.Open("` + name + `"): ` + C.GoString(cErr))
    	}
    	// TODO(crawshaw): look for plugin note, confirm it is a Go plugin
    	// and it was built with the correct toolchain.
    	if len(name) > 3 && name[len(name)-3:] == ".so" {
    		name = name[:len(name)-3]
    	}
    	if plugins == nil {
    		plugins = make(map[string]*Plugin)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/pe.go

    }
    
    func loadPETable(f *pe.File, sname, ename string) ([]byte, error) {
    	ssym, err := findPESymbol(f, sname)
    	if err != nil {
    		return nil, err
    	}
    	esym, err := findPESymbol(f, ename)
    	if err != nil {
    		return nil, err
    	}
    	if ssym.SectionNumber != esym.SectionNumber {
    		return nil, fmt.Errorf("%s and %s symbols must be in the same section", sname, ename)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		}
    	}
    	for column < n {
    		column++
    		str.WriteRune(' ')
    	}
    	return str.String()
    }
    
    func canonicalizeFileName(fname string) string {
    	fname = strings.TrimPrefix(fname, "/proc/self/cwd/")
    	fname = strings.TrimPrefix(fname, "./")
    	return filepath.Clean(fname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. cmd/genman/gen_kube_man.go

    	dparent := strings.Replace(parent, " ", "-", -1)
    	name := command.Name()
    	dname := name
    	if len(parent) > 0 {
    		dname = dparent + "-" + name
    		name = parent + " " + name
    	}
    
    	out := new(bytes.Buffer)
    	short := command.Short
    	long := command.Long
    	if len(long) == 0 {
    		long = short
    	}
    
    	preamble(out, name, short, long)
    	printOptions(out, command)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/archive/tar/common.go

    // Passing an instance of this to [FileInfoHeader] permits the caller
    // to avoid a system-dependent name lookup by specifying the Uname and Gname directly.
    type FileInfoNames interface {
    	fs.FileInfo
    	// Uname should give a user name.
    	Uname() (string, error)
    	// Gname should give a group name.
    	Gname() (string, error)
    }
    
    // isHeaderOnlyType checks if the given type flag is of the type that has no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/format/format.go

    	EndStack  int     `json:"esf,omitempty"`
    	Arg       any     `json:"args,omitempty"`
    	Cname     string  `json:"cname,omitempty"`
    	Category  string  `json:"cat,omitempty"`
    }
    
    type Frame struct {
    	Name   string `json:"name"`
    	Parent int    `json:"parent,omitempty"`
    }
    
    type NameArg struct {
    	Name string `json:"name"`
    }
    
    type BlockedArg struct {
    	Blocked string `json:"blocked"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/net/cgo_unix_syscall.go

    }
    
    func _C_res_ninit(state *_C_struct___res_state) error {
    	unix.ResNinit(state)
    	return nil
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_char, anslen int) int {
    	x, _ := unix.ResNsearch(state, dname, class, typ, ans, anslen)
    	return x
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	unix.ResNclose(state)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/model/ReportNode.groovy

     *      modelReport.reportNode.'**'.primaryCredentials.username.@type[0] == 'java.lang.String'
     * </pre>
     *
     */
    class ReportNode extends Node {
        Integer depth
    
        ReportNode(name) {
            super(null, name)
        }
    
        ReportNode(ReportNode parent, name) {
            super(parent, name)
        }
    
        ReportNode(name, Map attributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 06 16:25:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. src/os/user/cgo_lookup_unix.go

    		Username: _C_GoString(_C_pw_name(pwd)),
    		Name:     _C_GoString(_C_pw_gecos(pwd)),
    		HomeDir:  _C_GoString(_C_pw_dir(pwd)),
    	}
    	// The pw_gecos field isn't quite standardized. Some docs
    	// say: "It is expected to be a comma separated list of
    	// personal data where the first item is the full name of the
    	// user."
    	u.Name, _, _ = strings.Cut(u.Name, ",")
    	return u
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/endpoint.go

    		iDirection, iSubset, iName, iPort := safelyParseSubsetKey(endpoints[i].ClusterName)
    		jDirection, jSubset, jName, jPort := safelyParseSubsetKey(endpoints[j].ClusterName)
    		if iName == jName {
    			if iSubset == jSubset {
    				if iPort == jPort {
    					return iDirection < jDirection
    				}
    				return iPort < jPort
    			}
    			return iSubset < jSubset
    		}
    		return iName < jName
    	})
    	return endpoints, nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top