- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 948 for convention (0.08 sec)
-
build-logic-commons/settings.gradle.kts
includeVersionByRegex("com.gradle", "develocity-gradle-plugin", rcAndMilestonesPattern) } } } } plugins { id("org.gradle.toolchains.foojay-resolver-convention").version("1.0.0") } includeBuild("../build-logic-settings") // Shared basics for all include("basics") // Platform: defines shared dependency versions include("build-platform")
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon May 19 17:09:05 UTC 2025 - 1.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTaskWithKotlin.java
@CacheableTask public abstract class JapicmpTaskWithKotlin extends JapicmpTask { public JapicmpTaskWithKotlin() { super(); addKotlinCompilerToJapicmpClasspath(); getMaxWorkerHeap().convention("1g"); } // it's easier to do this via reflection than to copy the whole task private void addKotlinCompilerToJapicmpClasspath() { try {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/fr/docs/deployment/versions.md
## À propos des versions Suivant les conventions de versionnage sémantique, toute version inférieure à `1.0.0` peut potentiellement ajouter des changements non rétrocompatibles. FastAPI suit également la convention que tout changement de version "PATCH" est pour des corrections de bogues et des changements rétrocompatibles. /// tip | Astuce
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 4.1K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/TlsUtil.kt
} private fun newEmptyKeyStore(keyStoreType: String?): KeyStore = KeyStore.getInstance(keyStoreType ?: KeyStore.getDefaultType()).apply { val inputStream: InputStream? = null // By convention, 'null' creates an empty key store. load(inputStream, password) }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.3K bytes - Viewed (1) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jLoggerManager.java
} /** * The logger name for a component with a non-null hint is <code>role.hint</code>. * <b>Warning</b>: this does not conform to logger name as class name convention. * (and what about <code>null</code> and <code>default</code> hint equivalence?) */ @Override public Logger getLoggerForComponent(String role, String hint) { return (null == hintRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 2.9K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt
val androidStudioProvisioningExtension = extensions .create("androidStudioProvisioning", AndroidStudioProvisioningExtension::class) .apply { androidStudioVersion.convention(DEFAULT_ANDROID_STUDIO_VERSION) } val androidStudioVersion = androidStudioProvisioningExtension.androidStudioVersion.get()Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 19 16:20:44 UTC 2025 - 4.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy
richReport = project.provider { RichReport richReport = project.objects.newInstance(RichReport.class, new Object[0]); richReport.getDestinationDir().convention(project.layout.buildDirectory.dir("reports")); configureReport.execute(richReport) richReport.tap { def acceptedChanges = new AcceptedViolationsProvider(acceptedViolationsDir)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/resources/app.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml"/> <include path="lastaflute.xml"/> <include path="lasta_job.xml"/> <include path="fess.xml"/> <include path="fess_api.xml"/> <include path="fess_cors.xml"/> <include path="fess_dict.xml"/> <include path="fess_job.xml"/> <include path="fess_ldap.xml"/>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 19 02:22:47 UTC 2023 - 3.8K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
addOsAsInputs() } configureRerun() if (BuildEnvironment.isCiServer) { develocity.testRetry { maxRetries.convention(determineMaxRetries()) maxFailures = determineMaxFailures() } } useJUnitPlatform() configureSpock() configureFlakyTest()
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 18.9K bytes - Viewed (0) -
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt
private typealias ClassBytesIndex = (String) -> ClassBytesSupplier? /** * Repository providing access to class bytes by Kotlin source names. * * Follows the one directory per package name segment convention. * Keeps JAR files open for fast lookup, must be closed. * * Always include the current JVM platform loader for which no JAR file can be held open. */ class ClassBytesRepository(
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 6.3K bytes - Viewed (0)