Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for domacho (0.27 sec)

  1. src/cmd/link/link_test.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bufio"
    	"bytes"
    	"debug/macho"
    	"errors"
    	"internal/platform"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strings"
    	"testing"
    
    	"cmd/internal/sys"
    )
    
    var AuthorPaidByTheColumnInch struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pcln.go

    	// Go 1.2's symtab layout is documented in golang.org/s/go12symtab, but the
    	// layout and data has changed since that time.
    	//
    	// As of August 2020, here's the layout of pclntab:
    	//
    	//  .gopclntab/__gopclntab [elf/macho section]
    	//    runtime.pclntab
    	//      Carrier symbol for the entire pclntab section.
    	//
    	//      runtime.pcheader  (see: runtime/symtab.go:pcHeader)
    	//        8-byte magic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bytes"
    	"cmd/internal/pkgpath"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"go/ast"
    	"go/printer"
    	"go/token"
    	"internal/xcoff"
    	"io"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // Annotate Ref in Prog with C types by parsing gcc debug output.
    // Conversion of debug output to Go types.
    
    package main
    
    import (
    	"bytes"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/xcoff"
    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    okinawa.okinawa.jp okinoshima.shimane.jp okoppe.hokkaido.jp oksnes.no okuizumo.shimane.jp okuma.fukushima.jp okutama.tokyo.jp ol.no olawa.pl olayan olayangroup olbia-tempio.it olbiatempio.it oldnavy olecko.pl olkusz.pl ollo olsztyn.pl om omachi.nagano.jp omachi.saga.jp omaezaki.shizuoka.jp omaha.museum omasvuotna.no ome.tokyo.jp omega omg.lol omi.nagano.jp omi.niigata.jp omigawa.chiba.jp omihachiman.shiga.jp omitama.ibaraki.jp omiya.saitama.jp omniwe.site omotego.fukushima.jp omura.nagasaki.jp omuta.fukuoka.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    mo
    com.mo
    net.mo
    org.mo
    edu.mo
    gov.mo
    
    // mobi : https://en.wikipedia.org/wiki/.mobi
    mobi
    
    // mp : http://www.dot.mp/
    // Confirmed by registry <dcamacho@saipan.com> 2008-06-17
    mp
    
    // mq : https://en.wikipedia.org/wiki/.mq
    mq
    
    // mr : https://en.wikipedia.org/wiki/.mr
    mr
    gov.mr
    
    // ms : http://www.nic.ms/pdf/MS_Domain_Name_Rules.pdf
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    // object file. When reading a host object file, we'll typically
    // encounter a static section symbol (ex: ".text") containing content
    // for a collection of functions, then a series of ELF (or macho, etc)
    // symbol table entries each of which points into a sub-section
    // (offset and length) of its corresponding container symbol. Within
    // the go linker we create a loader.Sym for the container (which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	// to generate garbage collection information.
    
    	// Writable data sections that do not need any specialized handling.
    	writable := []sym.SymKind{
    		sym.SBUILDINFO,
    		sym.SELFSECT,
    		sym.SMACHO,
    		sym.SMACHOGOT,
    		sym.SWINDOWS,
    	}
    	for _, symn := range writable {
    		state.allocateSingleSymSections(&Segdata, symn, sym.SDATA, 06)
    	}
    	ldr := ctxt.loader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. cmd/testdata/decryptObjectInfo.json.zst

    -Sealed-Key":"IAAfAPn5VIoWED8ojzuy/bPadMpO4Tgr3BuUCxaCi==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/link/internal/loadmacho/ldmacho.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"tO1Gggu6d0+bIYfZ61gILjotlG2jwHO=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAKxlTj52p//EAxB...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg debug/macho, const Cpu386 = 7
    pkg debug/macho, const CpuAmd64 = 16777223
    pkg debug/macho, const LoadCmdDylib = 12
    pkg debug/macho, const LoadCmdDylinker = 15
    pkg debug/macho, const LoadCmdDysymtab = 11
    pkg debug/macho, const LoadCmdSegment = 1
    pkg debug/macho, const LoadCmdSegment64 = 25
    pkg debug/macho, const LoadCmdSymtab = 2
    pkg debug/macho, const LoadCmdThread = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top