Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for exe_name (0.28 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. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

            !if_region.get_elseFuncNameAttr().getValue().empty()) {
          else_name =
              mapper.GetUniqueName(if_region.get_elseFuncNameAttr().getValue())
                  .str();
        } else {
          else_name = GetName(if_region, "_else");
        }
        else_name = ExtractSingleBlockRegion(
            symbol_table, if_region.getElseBranch(), else_name, extern_values,
            worklist, /*extern_values_passthrough=*/false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

        }
    
        private static String[] getComponentTasks(String exeName) {
            return [getProjectTask(exeName), getFiltersTask(exeName)]
        }
    
        private static String getFiltersTask(String exeName) {
            ":${exeName}VisualStudioFilters"
        }
    
        private static String getProjectTask(String exeName) {
            return ":${exeName}VisualStudioProject"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

                    return 0;
                }
            """)
        }
    
        void withProject(exeName, source) {
            file("${exeName}/src/${exeName}/c/${exeName}.c") << source
            file("${exeName}/build.gradle") << """
                apply plugin: 'org.gradle.c'
    
                model {
                    components {
                        ${exeName}(NativeExecutableSpec) {
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            String exeName = getExecutableName(name);
            if (exeName.contains(File.separator)) {
                File candidate = new File(exeName);
                if (candidate.isFile()) {
                    return candidate;
                }
                return null;
            }
            for (File dir : getPath()) {
                File candidate = new File(dir, exeName);
                if (candidate.isFile()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	})
    	if len(args) == 0 {
    		return nil, nil, errors.New("no profile source specified")
    	}
    
    	var execName string
    	// Recognize first argument as an executable or buildid override.
    	if len(args) > 1 {
    		arg0 := args[0]
    		if file, err := o.Obj.Open(arg0, 0, ^uint64(0), 0, ""); err == nil {
    			file.Close()
    			execName = arg0
    			args = args[1:]
    		}
    	}
    
    	// Apply any specified flags to cfg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top