Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SetTools (0.53 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	bu.update(func(r *binrep) { r.fast = fast })
    }
    
    // SetTools processes the contents of the tools option. It
    // expects a set of entries separated by commas; each entry is a pair
    // of the form t:path, where cmd will be used to look only for the
    // tool named t. If t is not specified, the path is searched for all
    // tools.
    func (bu *Binutils) SetTools(config string) {
    	bu.update(func(r *binrep) { initTools(r, config) })
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	if normalize && len(source.Base) == 0 {
    		return nil, nil, errors.New("must have base profile to normalize by")
    	}
    	source.Normalize = normalize
    
    	if bu, ok := o.Obj.(*binutils.Binutils); ok {
    		bu.SetTools(*flagTools)
    	}
    
    	setCurrentConfig(cfg)
    	return source, cmd, nil
    }
    
    // addBaseProfiles adds the list of base profiles or diff base profiles to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. cmd/peer-s3-client.go

    	GetHost() string
    	SetPools([]int)
    	GetPools() []int
    }
    
    type localPeerS3Client struct {
    	node  Node
    	pools []int
    }
    
    func (l *localPeerS3Client) GetHost() string {
    	return l.node.Host
    }
    
    func (l *localPeerS3Client) SetPools(p []int) {
    	l.pools = make([]int, len(p))
    	copy(l.pools, p)
    }
    
    func (l localPeerS3Client) GetPools() []int {
    	return l.pools
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/DefaultGccPlatformToolChain.java

        @Nullable
        @Override
        public GccCommandLineToolConfigurationInternal getTool(ToolType toolType) {
            return tools.get(toolType);
        }
    
        public Collection<GccCommandLineToolConfigurationInternal> getTools() {
            return tools.values();
        }
    
        public Collection<GccCommandLineToolConfigurationInternal> getCompilers() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top