Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for exe_name (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top