- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 195 for Layout (2.41 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
task.getJavadocRoot().convention(layout.getBuildDirectory().dir("javadoc")); task.getReleaseNotesFile().convention(layout.getProjectDirectory().file("src/docs/release/notes.md")); task.getSamplesRoot().convention(layout.getBuildDirectory().dir("working/samples/docs")); task.dependsOn(tasks.named("javadocAll"));
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 04 14:26:28 UTC 2025 - 19.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 8.9K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupExtension.kt
import java.io.Serializable /** * Configuration for the Android home warmup tasks. */ abstract class AndroidHomeWarmupExtension { // using project.rootProject.layout will trigger IP error "cannot access 'Project.layout' functionality on another project ':'" abstract val rootProjectDir: DirectoryProperty abstract val warmupProjectsDirectory: DirectoryProperty abstract val sdkVersions: ListProperty<SdkVersion>Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 27 08:49:21 UTC 2025 - 1.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 18K bytes - Viewed (0) -
src/main/webapp/css/admin/style.css
} #result ol li { margin-bottom: 0; } #result .title { margin: 1.0em 0 0.5em 0; font-size: 120%; font-weight: 600; } section.content table { display: table; table-layout: fixed; width: 100%; } section.content table td { display: table-cell; word-wrap: break-word; overflow-wrap: break-word; } section.content table .label { color: #fff; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 1.1K bytes - Viewed (0) -
tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py
"default configs should be preserved" ) assert "SwaggerUIBundle.SwaggerUIStandalonePreset" in response.text, ( "default configs should be preserved" ) assert '"layout": "BaseLayout",' in response.text, ( "default configs should be preserved" ) assert '"deepLinking": true,' in response.text, ( "default configs should be preserved" )
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 1.5K bytes - Viewed (0) -
tests/test_tutorial/test_configure_swagger_ui/test_tutorial001.py
"default configs should be preserved" ) assert "SwaggerUIBundle.SwaggerUIStandalonePreset" in response.text, ( "default configs should be preserved" ) assert '"layout": "BaseLayout",' in response.text, ( "default configs should be preserved" ) assert '"deepLinking": true,' in response.text, ( "default configs should be preserved" )
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 1.4K bytes - Viewed (0) -
tests/test_tutorial/test_configure_swagger_ui/test_tutorial003.py
"default configs should be preserved" ) assert "SwaggerUIBundle.SwaggerUIStandalonePreset" in response.text, ( "default configs should be preserved" ) assert '"layout": "BaseLayout",' in response.text, ( "default configs should be preserved" ) assert '"showExtensions": true,' in response.text, ( "default configs should be preserved" )
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 1.5K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupPlugin.kt
override fun apply(project: Project) { val extension = project.extensions.create("androidHomeWarmup", AndroidHomeWarmupExtension::class.java).apply { warmupProjectsDirectory.convention(project.layout.buildDirectory.dir("android-home-warmup")) } project.tasks.register("androidHomeWarmup", AndroidHomeWarmupTask::class) { warmupProjectsDirectory.set(extension.warmupProjectsDirectory)
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 27 08:49:21 UTC 2025 - 2.2K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateAutoTestedSamplesTestTask.kt
@get:Input abstract val generateAutoTestedSamplesTest: Property<Boolean> @get:OutputDirectory abstract val outputDir: DirectoryProperty init { outputDir.convention(project.layout.buildDirectory.dir("generated/sources/autoTested/groovy")) } @TaskAction fun generate() { fileOperations.delete(outputDir.get().asFile) if (generateAutoTestedSamplesTest.get()) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 3.9K bytes - Viewed (0)