Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for exe_name (0.21 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	// build ID override from source. Assume the executable is the first mapping.
    	if execName, buildID := s.ExecName, s.BuildID; execName != "" || buildID != "" {
    		m := p.Mapping[0]
    		if execName != "" {
    			// Explicitly do not update KernelRelocationSymbol --
    			// the source override is most likely missing it.
    			m.File = execName
    		}
    		// Only apply the build ID override if the build ID in the main mapping is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		// wrapper without a separate export.
    		fmt.Fprintf(fgo2, "//go:cgo_export_dynamic %s\n", exp.ExpName)
    		// cgo_export_static refers to a symbol by its linker
    		// name, so set the linker name of the Go wrapper.
    		fmt.Fprintf(fgo2, "//go:linkname _cgoexp%s_%s _cgoexp%s_%s\n", cPrefix, exp.ExpName, cPrefix, exp.ExpName)
    		// In external linking mode, the Go linker sees the Go
    		// wrapper, but not the C wrapper. For this case,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionForTest.kt

        }
    
        fun register(testServices: TestServices) {
            val project = testServices.environmentManager.getProject() as MockProject
            val extensionPoint = project.extensionArea.getExtensionPoint(EP_NAME)
            extensionPoint.registerExtension(this, project)
        }
    }
    
    class KaResolveExtensionForTest(
        private val files: List<KaResolveExtensionFile>,
        private val packages: Set<FqName>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top