Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for exe_name (0.2 sec)

  1. scripts/docs.py

                    f"Missing language name for: {code}, "
                    "update it in docs/language_names.yml"
                )
                raise typer.Abort()
            use_name = f"{code} - {local_language_names[code]}"
            new_alternate.append({"link": url, "name": use_name})
        new_alternate.append({"link": "/em/", "name": "😉"})
        config["extra"]["alternate"] = new_alternate
        return config
    
    
    def update_config() -> None:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            return [":${libraryName}DllVisualStudioProject", ":${libraryName}DllVisualStudioFilters"]
        }
    
        private String[] getExecutableTasks(String exeName) {
            return [":${exeName}ExeVisualStudioProject", ":${exeName}ExeVisualStudioFilters"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiModifiablePsiTestServiceRegistrar.kt

                registerService(IndentHelper::class.java, MockIndentHelper::class.java)
    
                CoreApplicationEnvironment.registerExtensionPoint(
                    extensionArea,
                    DocumentWriteAccessGuard.EP_NAME,
                    MockDocumentWriteAccessGuard::class.java,
                )
            }
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 19:50:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. tensorflow/BUILD

            continue
          fi
    
          if [[ $${d} == external* ]]; then
            extname="$${d#*external/}"
            extname="$${extname%%/*}"
            if [[ $${TF_SYSTEM_LIBS:-} == *$${extname}* ]]; then
              continue
            fi
    
            d="$${d#*external/farmhash_archive/src}"
            d="$${d#*external/$${extname}/}"
            d="$${d#_virtual_includes/*/}"
          fi
    
          mkdir -p "$@/$${d}"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		pass.Reportf(fn.Pos(), "%s should not have type params", fnName)
    	}
    
    	if fnName == "Example" {
    		// Nothing more to do.
    		return
    	}
    
    	var (
    		exName = strings.TrimPrefix(fnName, "Example")
    		elems  = strings.SplitN(exName, "_", 3)
    		ident  = elems[0]
    		objs   = lookup(pass.Pkg, ident)
    	)
    	if ident != "" && len(objs) == 0 {
    		// Check ExampleFoo and ExampleBadFoo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    		// the %n suffix if any.
    		m.argsize = -1
    		extName := ldr.SymExtname(s)
    		if i := strings.IndexByte(extName, '%'); i >= 0 {
    			var err error
    			m.argsize, err = strconv.Atoi(extName[i+1:])
    			if err != nil {
    				ctxt.Errorf(s, "failed to parse stdcall decoration: %v", err)
    			}
    			m.argsize *= ctxt.Arch.PtrSize
    			ldr.SetSymExtname(s, extName[:i])
    		}
    
    		m.s = s
    		m.next = d.ms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	} else {
    		l.dynimpvers[i] = value
    	}
    }
    
    // SymExtname returns the "extname" value for the specified
    // symbol.
    func (l *Loader) SymExtname(i Sym) string {
    	if s, ok := l.extname[i]; ok {
    		return s
    	}
    	return l.SymName(i)
    }
    
    // SetSymExtname sets the  "extname" attribute for a symbol.
    func (l *Loader) SetSymExtname(i Sym, value string) {
    	// reject bad symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/go.go

    		return
    	}
    
    	if target.IsELF {
    		elfadddynsym(ldr, target, syms, s)
    	} else if target.HeadType == objabi.Hdarwin {
    		ldr.Errorf(s, "adddynsym: missed symbol (Extname=%s)", ldr.SymExtname(s))
    	} else if target.HeadType == objabi.Hwindows {
    		// already taken care of
    	} else {
    		ldr.Errorf(s, "adddynsym: unsupported binary format")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	var buf bytes.Buffer
    
    	ldr := ctxt.loader
    	for s, nsym := loader.Sym(1), loader.Sym(ldr.NSym()); s < nsym; s++ {
    		if !ldr.AttrCgoExport(s) {
    			continue
    		}
    		extname := ldr.SymExtname(s)
    		if !strings.HasPrefix(extname, "._cgoexp_") {
    			continue
    		}
    		if ldr.IsFileLocal(s) {
    			continue // Only export non-static symbols
    		}
    
    		// Retrieve the name of the initial symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    		// in an otherwise empty subdirectory named exe to avoid
    		// naming conflicts. The only possible conflict is if we were
    		// to create a top-level package named exe.
    		name := "a.out"
    		if p.Internal.ExeName != "" {
    			name = p.Internal.ExeName
    		} else if (cfg.Goos == "darwin" || cfg.Goos == "windows") && cfg.BuildBuildmode == "c-shared" && p.Target != "" {
    			// On OS X, the linker output name gets recorded in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top