Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for exe_name (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            assert projectFile.headerFiles == app.headerFiles.collect({"src/main/cpp/${it.name}"}).sort()
        }
    
        private String[] getProjectTasks(String exeName) {
            return [":${exeName}VisualStudioProject", ":${exeName}VisualStudioFilters"]
        }
    
        private String stripped(String configurationName) {
            if (toolChain.visualCpp) {
                return ""
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/switch.go

    	return true
    }
    
    func (c *exprClause) test(exprname ir.Node) ir.Node {
    	// Integer range.
    	if c.hi != c.lo {
    		low := ir.NewBinaryExpr(c.pos, ir.OGE, exprname, c.lo)
    		high := ir.NewBinaryExpr(c.pos, ir.OLE, exprname, c.hi)
    		return ir.NewLogicalExpr(c.pos, ir.OANDAND, low, high)
    	}
    
    	// Optimize "switch true { ...}" and "switch false { ... }".
    	if ir.IsConst(exprname, constant.Bool) && !c.lo.Type().IsInterface() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            NativeTestSuiteBinarySpecInternal  | EXE
            TestFooBinary                      | NONE
        }
    
        def "maps executable binary types to visual studio project"() {
            when:
            exe.getName() >> "exeName"
            exeBinary.getProjectPath() >> ":"
            binaryNamingScheme.getVariantDimensions() >> ["buildTypeOne"]
    
            then:
            checkNames targetBinary, "exeNameExe", 'buildTypeOne'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            failure.assertHasCause("A build operation failed.")
            def exeName = executable("build/binaries/mainExecutable/main").file.name
            failure.assertThatCause(containsText("Linker failed while linking ${exeName}"))
        }
    
        @ToBeFixedForConfigurationCache
        def "build fails when link library fails"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                KotlinCoreEnvironment.underApplicationLock {
                    if (applicationArea.hasExtensionPoint(ClassTypePointerFactory.EP_NAME)) return@underApplicationLock
                    CoreApplicationEnvironment.registerApplicationExtensionPoint(
                        ClassTypePointerFactory.EP_NAME,
                        ClassTypePointerFactory::class.java
                    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top