- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 559 for conventions (0.06 seconds)
-
BUILDING.md
The Elasticsearch project contains 3 build-related projects that are included into the Elasticsearch build as a [composite build](https://docs.gradle.org/current/userguide/composite_builds.html). ### `build-conventions` This project contains build conventions that are applied to all elasticsearch projects. ### `build-tools` This project contains all build logic that we publish for third party elasticsearch plugin authors.
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 23 07:45:59 GMT 2021 - 6.7K bytes - Click Count (0) -
build-logic-settings/default-settings-plugins/src/main/kotlin/gradlebuild.default-settings-plugins.settings.gradle.kts
} } } } plugins { id("com.gradle.develocity") id("io.github.gradle.develocity-conventions-plugin") id("org.gradle.toolchains.foojay-resolver-convention")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 1.4K bytes - Click Count (0) -
.github/CONTRIBUTING.md
Contributing ============ If you would like to contribute code to OkHttp you can do so through GitHub by forking the repository and sending a pull request. When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Please also make sure your code compiles by running `./gradlew check`. Checkstyle failures during compilation indicate errors in your style and can be viewed in the
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 17 04:16:26 GMT 2019 - 1.4K bytes - Click Count (0) -
regression-test/build.gradle.kts
plugins { id("okhttp.base-conventions") id("com.android.library") } android { compileSdk = 36 namespace = "okhttp.android.regression" defaultConfig { minSdk = 21 // Make sure to use the AndroidJUnitRunner (or a sub-class) in order to hook in the JUnit 5 Test Builder testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments += mapOf(Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 1.6K bytes - Click Count (0) -
module-tests/build.gradle.kts
import okhttp3.buildsupport.testJavaVersion plugins { id("okhttp.base-conventions") id("java") id("application") alias(libs.plugins.jlink) alias(libs.plugins.extra.java.module.info) } dependencies { implementation(projects.okhttp) implementation(projects.loggingInterceptor) // Force version 26.0.2-1 which is a proper JPMS module, unlike transitive 13.0 implementation(libs.jetbrains.annotations)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 1.8K bytes - Click Count (0) -
CONTRIBUTING.md
Code Contributions ------------------ Get working code on a personal branch with tests passing before you submit a PR: ``` ./gradlew clean check ``` Please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Contribute code changes through GitHub by forking the repository and sending a pull request. We squash all pull requests on merge. Gradle Setup
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 14 08:26:50 GMT 2023 - 2K bytes - Click Count (0) -
docs/contribute/contributing.md
Code Contributions ------------------ Get working code on a personal branch with tests passing before you submit a PR: ``` ./gradlew clean check ``` Please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Contribute code changes through GitHub by forking the repository and sending a pull request. We squash all pull requests on merge. Gradle Setup
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 14 08:26:50 GMT 2023 - 2K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/CheckstylePrecommitPlugin.java
*/ package org.elasticsearch.gradle.internal.precommit; import org.elasticsearch.gradle.VersionProperties; import org.elasticsearch.gradle.internal.InternalPlugin; import org.elasticsearch.gradle.internal.conventions.precommit.PrecommitPlugin; import org.gradle.api.Action; import org.gradle.api.GradleException; import org.gradle.api.Project; import org.gradle.api.Task; import org.gradle.api.artifacts.dsl.DependencyHandler;
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 17 08:59:22 GMT 2021 - 5.5K bytes - Click Count (0) -
android-test/build.gradle.kts
import okhttp3.buildsupport.androidBuild plugins { id("okhttp.base-conventions") id("com.android.library") id("de.mannodermaus.android-junit5") } android { compileSdk = 36 namespace = "okhttp.android.test" defaultConfig { minSdk = 21 // Make sure to use the AndroidJUnitRunner (or a sub-class) in order to hook in the JUnit 5 Test BuilderCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 3.8K bytes - Click Count (2) -
architecture/standards/0002-avoid-using-java-serialization.md
- **Flexibility and Control:** Java serialization offers limited control over the serialization process, such as excluding certain fields, customizing naming conventions, and handling complex data structures more gracefully. - **Security:** Java serialization poses security risks, especially related to deserialization vulnerabilities. - **Version Compatibility:**
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 14:05:45 GMT 2026 - 2.3K bytes - Click Count (0)