- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 160 for logic (0.02 sec)
-
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts
Justin Van Dort <******@****.***> 1727464103 -0400
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 15:18:07 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic-commons/settings.gradle.kts
include("gradle-plugin") // Plugins to publish gradle projects include("publishing") rootProject.name = "build-logic-commons" // Make sure all the build-logic is compiled for the right Java version gradle.lifecycle.beforeProject { pluginManager.withPlugin("java-base") { the<JavaPluginExtension>().toolchain {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 06:19:29 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/en/docs/advanced/events.md
# Lifespan Events You can define logic (code) that should be executed before the application **starts up**. This means that this code will be executed **once**, **before** the application **starts receiving requests**. The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:36:22 UTC 2024 - 7.6K bytes - Viewed (0) -
build-logic-settings/UpdateDevelocityPluginVersion.java
if (args.length != 1) { System.out.println("Usage: java build-logic-settings/UpdateDevelocityPluginVersion.java <new-version>"); System.exit(1); } String newVersion = args[0]; String[] files = { "build-logic-commons/build-platform/build.gradle.kts", "build-logic-settings/settings.gradle.kts", "settings.gradle.kts" };
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 12 07:58:50 UTC 2024 - 1.4K bytes - Viewed (0) -
.github/CODEOWNERS
.github/ @gradle/bt-developer-productivity @gradle/bt-support # This might need to be more finegrained in the future /build-logic/ @gradle/bt-developer-productivity /build-logic-commons/ @gradle/bt-developer-productivity /build-logic-settings/ @gradle/bt-developer-productivity /build.gradle* @gradle/bt-developer-productivity
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 24 14:46:27 UTC 2024 - 10.6K bytes - Viewed (0) -
build-logic-settings/settings.gradle.kts
plugins { id("com.gradle.develocity").version("3.18.1") // Run `java build-logic-settings/UpdateDevelocityPluginVersion.java <new-version>` to update id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.2") id("org.gradle.toolchains.foojay-resolver-convention").version("0.8.0") } include("build-environment")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 06:42:50 UTC 2024 - 1.1K bytes - Viewed (0) -
docs/en/docs/how-to/custom-request-and-route.md
# Custom Request and APIRoute class In some cases, you may want to override the logic used by the `Request` and `APIRoute` classes. In particular, this may be a good alternative to logic in a middleware. For example, if you want to read or manipulate the request body before it is processed by your application. /// danger This is an "advanced" feature. If you are just starting with **FastAPI** you might want to skip this section. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 22:39:38 UTC 2024 - 4.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java
String adjustment = ""; if (parent != null) { String childName = child.getArtifactId(); /* * This logic (using filesystem, against wanted independence from the user environment) exists only for the * sake of backward-compat with 2.x (MNG-5000). In general, it is wrong to
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.9K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.java-shared-runtime.gradle.kts
id("gradlebuild.repositories") id("gradlebuild.reproducible-archives") id("gradlebuild.private-javadoc") } description = "A plugin that sets up a Java code that is shared between build-logic and runtime" java { configureJavaToolChain() sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } testing { suites {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 15:18:07 UTC 2024 - 779 bytes - Viewed (0) -
build-logic-commons/gradle-plugin/build.gradle.kts
plugins { `kotlin-dsl` } group = "gradlebuild" description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds" dependencies { compileOnly("com.gradle:develocity-gradle-plugin") api(platform(projects.buildPlatform)) implementation(projects.basics) implementation(projects.moduleIdentity) implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.0.1")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 13:02:17 UTC 2024 - 843 bytes - Viewed (0)