Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 814 for openPE (0.11 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/checkdwarf/main.go

    		usage()
    	}
    
    	exePath := os.Args[1]
    	dieSuffix := os.Args[2]
    
    	var exe dwarfer
    
    	for _, openfn := range []func(string) dwarfer{openMacho, openPE, openElf} {
    		exe = openfn(exePath)
    		if exe != nil {
    			break
    		}
    	}
    
    	if exe == nil {
    		fmt.Fprintf(os.Stderr, "could not open %s\n", exePath)
    		os.Exit(1)
    	}
    
    	data, err := exe.DWARF()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/objfile.go

    	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 {
    		return nil, err
    	}
    	if f, err := openGoFile(r); err == nil {
    		return f, 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)
  3. 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)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		name:    name,
    		buildID: buildID,
    		m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    	}}, nil
    }
    
    func (b *binrep) openPE(name string, start, limit, offset uint64) (plugin.ObjFile, error) {
    	pf, err := pe.Open(name)
    	if err != nil {
    		return nil, fmt.Errorf("error parsing %s: %v", name, err)
    	}
    	defer pf.Close()
    
    	var imageBase uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. internal/config/identity/openid/openid.go

    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/identity/openid/provider"
    	"github.com/minio/minio/internal/hash/sha256"
    	"github.com/minio/pkg/v3/env"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // OpenID keys and envs.
    const (
    	ClientID      = "client_id"
    	ClientSecret  = "client_secret"
    	ConfigURL     = "config_url"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. releasenotes/notes/wasm-fail-open.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 02 21:32:02 UTC 2023
    - 169 bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/AbstractCrossProcessCacheAccess.java

    public abstract class AbstractCrossProcessCacheAccess implements CrossProcessCacheAccess, Closeable {
        /**
         * Opens this cache access instance when the cache is opened. State lock is held while this method is called.
         */
        public abstract void open();
    
        /**
         * Closes this cache access instance when the cache is opened. State lock is held while this method is called.
         */
        @Override
        public abstract void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/debug/dwarf/open.go

    cui fliter <******@****.***> 1697179713 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. .github/workflows/iam-integrations.yaml

                etcd: ""
                openid: ""
              # exclude combos where both ldap and openid IDPs are specified.
              - ldap: "localhost:389"
                openid: "http://127.0.0.1:5556/dex"
    
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Test LDAP/OpenID/Etcd combo
            env:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. docs/sts/casdoor.md

    KEY:
    identity_openid  enable OpenID SSO support
    
    ARGS:
    config_url*   (url)       openid discovery document e.g. "https://accounts.google.com/.well-known/openid-configuration"
    client_id     (string)    unique public identifier for apps e.g. "292085223830.apps.googleusercontent.com"
    claim_name    (string)    JWT canned policy claim name, defaults to "policy"
    claim_prefix  (string)    JWT claim namespace prefix e.g. "customer1/"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top