- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for getsourcefile (0.07 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java
}); TaskProvider<AssembleDslDocTask> dslDocbook = tasks.register("dslDocbook", AssembleDslDocTask.class, task -> { task.getSourceFile().convention(dslReference.getRoot().file("dsl.xml")); task.getPluginsMetaDataFile().convention(dslReference.getRoot().file("plugins.xml")); task.getClassDocbookDirectory().convention(dslReference.getRoot());Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 5.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy
* </ul> * */ @CacheableTask abstract class UserGuideTransformTask extends DefaultTask { @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getSourceFile(); @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getLinksFile(); @OutputFile abstract RegularFileProperty getDestFile(); @InputCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri May 16 07:58:02 GMT 2025 - 5.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy
* as dsl doc, javadoc or groovydoc.</li> * </ul> */ @CacheableTask abstract class AssembleDslDocTask extends DefaultTask { @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getSourceFile(); @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getClassMetaDataFile(); @PathSensitive(PathSensitivity.NONE) @InputFileCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 9.8K bytes - Click Count (0) -
fastapi/routing.py
func_id = id(func) if func_id in _endpoint_context_cache: return _endpoint_context_cache[func_id] 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
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/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Sun Dec 15 07:49:41 GMT 2024 - 13.5K 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)