Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for findExe (0.09 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

        }
    
        private findExe(String exe) {
            final candidate = new File(vcBin, exe)
            if (candidate.exists()) {
                return candidate
            }
            throw new RuntimeException("dumpbin.exe not found")
        }
    
        protected String getDumpbinHeaders() {
            def dumpbin = findExe("dumpbin.exe")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

            this.environments = environments
        }
        
        static NMToolFixture of(List<String> environments) {
            return new NMToolFixture(environments)
        }
    
        private findExe(String exe) {
            // *nix OS correctly handle search inside the process's PATH environment variable
            if (!OperatingSystem.current().windows) {
                return [exe]
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // binutils objdump binary. No version check is performed.
    func isBuObjdump(output string) bool {
    	return strings.Contains(output, "GNU objdump")
    }
    
    // findExe looks for an executable command on a set of paths.
    // If it cannot find it, returns cmd.
    func findExe(cmd string, paths []string) (string, bool) {
    	for _, p := range paths {
    		cp := filepath.Join(p, cmd)
    		if c, err := exec.LookPath(cp); err == nil {
    			return c, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        fname = [x.path for x in fname.files.to_list()][0]
        toks = fname[:-5].split("/")
        findex = -1
        for s in _PREFIXES:
            findex = _SafeIndex(toks, s)
            if findex != -1:
                break
        if findex == -1:
            fail("%s does not contain any of %s" % (fname, _PREFIXES))
        return ".".join(toks[findex:]) + ".class"
    
    def _impl(ctx):
        classes = ",".join(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/coverage/decodemeta/decode.go

    	return d.strtab.Get(d.hdr.ModulePath)
    }
    
    func (d *CoverageMetaDataDecoder) NumFuncs() uint32 {
    	return d.hdr.NumFuncs
    }
    
    // ReadFunc reads the coverage meta-data for the function with index
    // 'findex', filling it into the FuncDesc pointed to by 'f'.
    func (d *CoverageMetaDataDecoder) ReadFunc(fidx uint32, f *coverage.FuncDesc) error {
    	if fidx >= d.hdr.NumFuncs {
    		return fmt.Errorf("illegal function index")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/bigger-applications.md

    ```Python
    from .dependencies import get_token_header
    ```
    
    würde bedeuten:
    
    * Beginnend im selben Package, in dem sich dieses Modul (die Datei `app/routers/items.py`) befindet (das Verzeichnis `app/routers/`) ...
    * finde das Modul `dependencies` (eine imaginäre Datei unter `app/routers/dependencies.py`) ...
    * und importiere daraus die Funktion `get_token_header`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. okhttp-android/src/main/baseline-prof.txt

    Lkotlinx/coroutines/internal/SystemPropsKt;
    Lkotlinx/coroutines/internal/SystemPropsKt__SystemPropsKt;
    Lkotlinx/coroutines/internal/ThreadContextKt$countAll$1;
    Lkotlinx/coroutines/internal/ThreadContextKt$findOne$1;
    Lkotlinx/coroutines/internal/ThreadContextKt$updateState$1;
    Lkotlinx/coroutines/internal/ThreadContextKt;
    Lkotlinx/coroutines/internal/ThreadSafeHeap;
    Lkotlinx/coroutines/internal/ThreadSafeHeapNode;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
Back to top