Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for exe_name (0.35 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeBinaryRulesTest.groovy

            binary.installation >> installation
    
            when:
            toolProvider.getExecutableName("base_name") >> "exe_name"
    
            and:
            NativeBinaryRules.assignTools(binary, toolChains, tmpDir.testDirectory)
    
            then:
            executableFile.file == tmpDir.testDirectory.file("exe/comp_name/exe_name")
            installation.directory == tmpDir.testDirectory.file("install/comp_name")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPath.java

            File executable = executables.get(exeName);
            if (executable == null) {
                executable = findExecutable(operatingSystem, exeName);
                if (executable != null) {
                    executables.put(exeName, executable);
                }
            }
            return executable == null || !executable.isFile() ? new MissingTool(key, exeName, pathEntries) : new FoundTool(executable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

        }
    
        private static String[] getComponentTasks(String exeName) {
            return [getProjectTask(exeName), getFiltersTask(exeName)]
        }
    
        private static String getProjectTask(String exeName) {
            return ":${exeName}ExeVisualStudioProject"
        }
    
        private static String getFiltersTask(String exeName) {
            return ":${exeName}ExeVisualStudioFilters"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/inst_test.go

    	testenv.MustHaveGoRun(t)
    
    	// Build ptrsort.go, which uses package mysort.
    	var output []byte
    	var err error
    	filename := "ptrsort.go"
    	exename := "ptrsort"
    	outname := "ptrsort.out"
    	gotool := testenv.GoToolPath(t)
    	dest := filepath.Join(t.TempDir(), exename)
    	cmd := testenv.Command(t, gotool, "build", "-o", dest, filepath.Join("testdata", filename))
    	if output, err = cmd.CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectMapperTest.groovy

            VisualStudioTargetBinary targetBinary = Mock(VisualStudioTargetBinary)
            targetBinary.projectPath >> values.get("projectPath", ":")
            targetBinary.componentName >> values.get("componentName", "exeName")
            targetBinary.variantDimensions >> values.get("variantDimensions", ['buildTypeOne'])
            targetBinary.projectType >> values.get("projectType", EXE)
            return targetBinary
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

        public companion object {
            public val EP_NAME: ExtensionPointName<KaResolveExtensionProvider> =
                ExtensionPointName<KaResolveExtensionProvider>("org.jetbrains.kotlin.kaResolveExtensionProvider")
    
            public fun provideExtensionsFor(module: KtModule): List<KaResolveExtension> {
                return EP_NAME.getExtensionList(module.project).flatMap { it.provideExtensionsFor(module) }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

        }
    
        private CommandLineToolInvocationWorker commandLineTool(ToolType key, String exeName) {
            return new DefaultCommandLineToolInvocationWorker(key.getToolName(), toolSearchPath.locate(key, exeName).getTool(), execActionFactory);
        }
    
        private CommandLineToolContext context(CommandLineToolConfigurationInternal toolConfiguration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

        public companion object {
            public val EP_NAME: ExtensionPointName<AdditionalKDocResolutionProvider> =
                ExtensionPointName<AdditionalKDocResolutionProvider>("org.jetbrains.kotlin.analysis.additionalKDocResolutionProvider")
    
            public fun resolveKdocFqName(analysisSession: KaSession, fqName: FqName, contextElement: KtElement): Collection<KaSymbol> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/volume/flexvolume/plugin.go

    	return nil
    }
    
    func (plugin *flexVolumePlugin) getExecutable() string {
    	parts := strings.Split(plugin.driverName, "/")
    	execName := parts[len(parts)-1]
    	execPath := filepath.Join(plugin.execPath, execName)
    	if runtime.GOOS == "windows" {
    		execPath = util.GetWindowsPath(execPath)
    	}
    	return execPath
    }
    
    // Name is part of the volume.VolumePlugin interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/run/run.go

    			hint := ""
    			if !cfg.BuildContext.CgoEnabled {
    				hint = " (cgo is disabled)"
    			}
    			base.Fatalf("go: no suitable source files%s", hint)
    		}
    		p.Internal.ExeName = src[:len(src)-len(".go")]
    	} else {
    		p.Internal.ExeName = path.Base(p.ImportPath)
    	}
    
    	a1 := b.LinkAction(work.ModeBuild, work.ModeBuild, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top