Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for exe_name (0.16 sec)

  1. src/cmd/compile/internal/ssa/decompose.go

    	if t.NumElem() != 1 {
    		// shouldn't get here due to CanSSA
    		f.Fatalf("array not of size 1")
    	}
    	elemName := f.SplitArray(name)
    	var keep []*Value
    	for _, v := range f.NamedValues[*name] {
    		if v.Op != OpArrayMake1 {
    			keep = append(keep, v)
    			continue
    		}
    		f.NamedValues[*elemName] = append(f.NamedValues[*elemName], v.Args[0])
    	}
    	if len(keep) == 0 {
    		// delete the name for the array as a whole
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  2. 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)
  3. ci/official/utilities/extract_resultstore_links.py

        if status in (InvokeStatus.tests_failed, InvokeStatus.build_failed):
          if status == InvokeStatus.tests_failed:
            failure_count += 1
            elem_name = 'failure'
          else:
            error_count += 1
            elem_name = 'error'
          if command:
            failure_msg = (f'\nThe command was:\n\n'
                           f'{command}\n\n')
          else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

        final WindowsRegistry windowsRegistry = Stub(WindowsRegistry)
        final OperatingSystem operatingSystem = Stub(OperatingSystem) {
            isWindows() >> true
            getExecutableName(_ as String) >> { String exeName -> exeName }
        }
        final WindowsSdkLocator windowsSdkLocator = new LegacyWindowsSdkLocator(operatingSystem, windowsRegistry)
    
        def "uses highest version SDK found in registry"() {
            def dir1 = sdkDir("sdk1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

        private CommandLineToolInvocationWorker commandLineTool(GccCommandLineToolConfigurationInternal tool) {
            ToolType key = tool.getToolType();
            String exeName = tool.getExecutable();
            return new DefaultCommandLineToolInvocationWorker(key.getToolName(), toolSearchPath.locate(key, exeName).getTool(), execActionFactory);
        }
    
        private CommandLineToolContext context(GccCommandLineToolConfigurationInternal toolConfiguration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/cmd/objdump/objdump_test.go

    	out, err = cmd.CombinedOutput()
    	t.Logf("Running %v", cmd.Args)
    
    	if err != nil {
    		exename := srcfname[:len(srcfname)-len(filepath.Ext(srcfname))] + ".exe"
    		t.Fatalf("objdump %q: %v\n%s", exename, err, out)
    	}
    
    	text := string(out)
    	ok := true
    	for _, s := range need {
    		if !strings.Contains(text, s) {
    			t.Errorf("disassembly missing '%s'", s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/ptr_test.go

    		t.Fatal(err)
    	}
    	if err := os.WriteFile(filepath.Join(src, "cgo2.go"), cgo2.Bytes(), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	exeName := "ptrtest.exe"
    	if cgocheck2 {
    		exeName = "ptrtest2.exe"
    	}
    	cmd := exec.Command("go", "build", "-o", exeName)
    	cmd.Dir = src
    	cmd.Env = append(os.Environ(), "GOPATH="+gopath)
    
    	// Set or remove cgocheck2 from the environment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiLibraryBaseTestServiceRegistrar.kt

                })
            BinaryFileStubBuilders.INSTANCE.addExplicitExtension(KlibMetaFileType, ClassFileStubBuilder())
    
            ClassFileDecompilers.getInstance().EP_NAME.point.apply {
                registerExtension(KotlinClassFileDecompiler(), LoadingOrder.FIRST, testServices.disposableProvider.getApplicationDisposable())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Dec 01 18:12:23 UTC 2023
    - 2.5K 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