Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 5,940 for stringAt (4.07 sec)

  1. src/cmd/link/internal/sym/symkind.go

    import "cmd/internal/objabi"
    
    // A SymKind describes the kind of memory represented by a symbol.
    type SymKind uint8
    
    // Defined SymKind values.
    //
    // TODO(rsc): Give idiomatic Go names.
    //
    //go:generate stringer -type=SymKind
    const (
    	Sxxx SymKind = iota
    	STEXT
    	SELFRXSECT
    	SMACHOPLT
    
    	// Read-only sections.
    	STYPE
    	SSTRING
    	SGOSTRING
    	SGOFUNC
    	SGCBITS
    	SRODATA
    	SFUNCTAB
    
    	SELFROSECT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/objfile.go

    	goarch() string
    	loadAddress() (uint64, error)
    	dwarf() (*dwarf.Data, error)
    }
    
    // A File is an opened executable file.
    type File struct {
    	r       *os.File
    	entries []*Entry
    }
    
    type Entry struct {
    	name string
    	raw  rawFile
    }
    
    // A Sym is a symbol defined in an executable file.
    type Sym struct {
    	Name   string  // symbol name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p ppc64; DO NOT EDIT.
    
    package ppc64
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ADD",
    	"ADDCC",
    	"ADDIS",
    	"ADDV",
    	"ADDVCC",
    	"ADDC",
    	"ADDCCC",
    	"ADDCV",
    	"ADDCVCC",
    	"ADDME",
    	"ADDMECC",
    	"ADDMEVCC",
    	"ADDMEV",
    	"ADDE",
    	"ADDECC",
    	"ADDEVCC",
    	"ADDEV",
    	"ADDZE",
    	"ADDZECC",
    	"ADDZEVCC",
    	"ADDZEV",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. internal/crypto/sse.go

    // from the metadata using the SSE-C client key.
    func unsealObjectKey(clientKey []byte, metadata map[string]string, bucket, object string) (key ObjectKey, err error) {
    	sealedKey, err := SSEC.ParseMetadata(metadata)
    	if err != nil {
    		return
    	}
    	err = key.Unseal(clientKey, sealedKey, SSEC.String(), bucket, object)
    	return
    }
    
    // EncryptSinglePart encrypts an io.Reader which must be the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/helpers.go

    }
    
    // LazyClientIP implements String() string and it will
    // calls GetClientIP() lazily only when required.
    type lazyClientIP struct {
    	req *http.Request
    }
    
    func (lazy *lazyClientIP) String() string {
    	if lazy.req != nil {
    		if ip := utilnet.GetClientIP(lazy.req); ip != nil {
    			return ip.String()
    		}
    	}
    	return "unknown"
    }
    
    // lazyAccept implements String() string and it will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/go/printer/testdata/expressions.golden

    	_ = (interface{})(nil)
    	_ = (interface{ String() string })(nil)
    	_ = (interface {
    		String() string
    	})(nil)
    	_ = (interface{ fmt.Stringer })(nil)
    	_ = (interface {
    		fmt.Stringer
    	})(nil)
    }
    
    func _() {
    	// do not modify literals
    	_ = "tab1	tab2	tab3	end"	// string contains 3 tabs
    	_ = "tab1 tab2 tab3 end"	// same string with 3 blanks - may be unaligned because editors see tabs in strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  7. src/go/printer/testdata/expressions.raw

    	_ = (interface{})(nil)
    	_ = (interface{ String() string })(nil)
    	_ = (interface {
    		String() string
    	})(nil)
    	_ = (interface{ fmt.Stringer })(nil)
    	_ = (interface {
    		fmt.Stringer
    	})(nil)
    }
    
    func _() {
    	// do not modify literals
    	_ = "tab1	tab2	tab3	end"	// string contains 3 tabs
    	_ = "tab1 tab2 tab3 end"	// same string with 3 blanks - may be unaligned because editors see tabs in strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/vet/vet_test.go

    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		line = strings.TrimSuffix(line, "\r") // normalize Windows output
    		if strings.HasPrefix(line, "\t") {
    			res[len(res)-1] += "\n" + line
    		} else if strings.HasPrefix(line, "go tool") || strings.HasPrefix(line, "#") || !wantAuto && strings.HasPrefix(line, "<autogenerated>") {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p s390x; DO NOT EDIT.
    
    package s390x
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ADD",
    	"ADDC",
    	"ADDE",
    	"ADDW",
    	"DIVW",
    	"DIVWU",
    	"DIVD",
    	"DIVDU",
    	"MODW",
    	"MODWU",
    	"MODD",
    	"MODDU",
    	"MULLW",
    	"MULLD",
    	"MULHD",
    	"MULHDU",
    	"MLGR",
    	"SUB",
    	"SUBC",
    	"SUBV",
    	"SUBE",
    	"SUBW",
    	"NEG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. operator/pkg/name/name.go

    			allM += m + helm.YAMLSeparator
    		}
    		out[string(cname)] = allM
    	}
    	return out
    }
    
    // MergeManifestSlices merges a slice of manifests into a single manifest string.
    func MergeManifestSlices(manifests []string) string {
    	return strings.Join(manifests, helm.YAMLSeparator)
    }
    
    // String implements the Stringer interface.
    func (mm ManifestMap) String() string {
    	out := ""
    	for _, ms := range mm {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top