- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getsourcelines (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
fastapi/routing.py
try: ctx: EndpointContext = {} if (source_file := inspect.getsourcefile(func)) is not None: ctx["file"] = source_file if (line_number := inspect.getsourcelines(func)[1]) is not None: ctx["line"] = line_number if (func_name := getattr(func, "__name__", None)) is not None: ctx["function"] = func_name except Exception:Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 12:54:56 GMT 2025 - 174.6K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/KotlinSourceParser.kt
} val environment = KotlinCoreEnvironment.createForProduction(this, configuration, EnvironmentConfigFiles.JVM_CONFIG_FILES) return environment.getSourceFiles() } private fun configureKotlinCompilerIoForWindowsSupport() = org.jetbrains.kotlin.cli.common.environment.setIdeaIoUseFallback() } privateCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Sep 16 08:22:33 GMT 2025 - 3.9K bytes - Click Count (0)