Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 309 for Nname (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

        outputs of the TF op.
    
        Note that `_name` is a required attribute specifying the TF op to run.
        TFRT attributes are sorted alphabetically, passed in as positional
        attributes to the TFRT kernel, rather than as named attributes.
    
        Example:
          To run "tf.MatMul" op, which has two boolean attributes,
            1. Set _name = "MatMul"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer.go

    	case nil:
    		// we should not reach here but don't crash
    
    	// expressions and types
    	case *BadExpr:
    		p.print(_Name, "<bad expr>")
    
    	case *Name:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *BasicLit:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *FuncLit:
    		p.print(n.Type, blank)
    		if n.Body != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top