Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for openpgp (0.18 sec)

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

    // Parsing of PE executables (Microsoft Windows).
    
    package objfile
    
    import (
    	"debug/dwarf"
    	"debug/pe"
    	"fmt"
    	"io"
    	"sort"
    )
    
    type peFile struct {
    	pe *pe.File
    }
    
    func openPE(r io.ReaderAt) (rawFile, error) {
    	f, err := pe.NewFile(r)
    	if err != nil {
    		return nil, err
    	}
    	return &peFile{f}, nil
    }
    
    func (f *peFile) symbols() ([]Sym, error) {
    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/go/internal/work/security.go

    	re(`-fmessage-length=(.+)`),
    	re(`-f(no-)?modules`),
    	re(`-f(no-)?objc-arc`),
    	re(`-f(no-)?objc-nonfragile-abi`),
    	re(`-f(no-)?objc-legacy-dispatch`),
    	re(`-f(no-)?omit-frame-pointer`),
    	re(`-f(no-)?openmp(-simd)?`),
    	re(`-f(no-)?permissive`),
    	re(`-f(no-)?(pic|PIC|pie|PIE)`),
    	re(`-f(no-)?plt`),
    	re(`-f(no-)?rtti`),
    	re(`-f(no-)?split-stack`),
    	re(`-f(no-)?stack-(.+)`),
    	re(`-f(no-)?strict-aliasing`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/objfile.go

    	// from the start of the symbol containing the relocation.
    	String(insnOffset uint64) string
    }
    
    var openers = []func(io.ReaderAt) (rawFile, error){
    	openElf,
    	openMacho,
    	openPE,
    	openPlan9,
    	openXcoff,
    }
    
    // Open opens the named file.
    // The caller must call f.Close when the file is no longer needed.
    func Open(name string) (*File, error) {
    	r, err := os.Open(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbNamedPipe.java

        @Override
        public int getPipeType () {
            return this.pipeType;
        }
    
    
        /**
         * @return a handle for interacting with the pipe
         */
        @Override
        public SmbPipeHandle openPipe () {
            return new SmbPipeHandleImpl(this);
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		if err != nil {
    			return nil, fmt.Errorf("error reading fat Mach-O file %s: %v", name, err)
    		}
    		return f, nil
    	}
    
    	peMagic := string(header[:2])
    	if peMagic == "MZ" {
    		f, err := b.openPE(name, start, limit, offset)
    		if err != nil {
    			return nil, fmt.Errorf("error reading PE file %s: %v", name, err)
    		}
    		return f, nil
    	}
    
    	return nil, fmt.Errorf("unrecognized binary format: %s", name)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    	}
    	return spec
    }
    
    func (p *parser) parseGenericType(spec *ast.TypeSpec, openPos token.Pos, name0 *ast.Ident, typ0 ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "parseGenericType"))
    	}
    
    	list := p.parseParameterList(name0, typ0, token.RBRACK)
    	closePos := p.expect(token.RBRACK)
    	spec.TypeParams = &ast.FieldList{Opening: openPos, List: list, Closing: closePos}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. src/encoding/json/testdata/code.json.gz

    },{"name":"Makefile","kids":[],"cl_weight":0.2222222222222222,"touches":2,"min_t":1256172830,"max_t":1303221478,"mean_t":1279697154}],"cl_weight":18.398519536019535,"touches":26,"min_t":1256172830,"max_t":1310076410,"mean_t":1284230655},{"name":"openpgp","kids":[{"name":"keys.go","kids":[],"cl_weight":1.0992424242424241,"touches":6,"min_t":1298596793,"max_t":1309542792,"mean_t":1305497332},{"name":"packet","kids":[{"name":"public_key.go","kids":[],"cl_weight":1.969022644022644,"touches":9,"min_t...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top