- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 602 for grappe (0.07 seconds)
-
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { id("java-library") id("org.gradle.kotlin.kotlin-dsl") // this is 'kotlin-dsl' without version id("gradlebuild.code-quality") id("gradlebuild.detekt") id("gradlebuild.ci-reporting")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 1.7K bytes - Click Count (0) -
.github/workflows/upgrade-to-latest-wrapper.yml
name: Upgrade to latest wrapper on: schedule: - cron: '0 4 * * *' workflow_dispatch: permissions: contents: write jobs: upgrade-latest-wrapper: runs-on: ubuntu-latest if: github.repository == 'gradle/gradle' steps: - name: Checkout repository uses: actions/checkout@v6 with: ref: devprod/upgrade-to-latest-wrapper token: ${{ secrets.GITHUB_TOKEN }}Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Nov 20 22:15:20 GMT 2025 - 1.3K bytes - Click Count (0) -
architecture/standards/0010-gradle-properties-naming.md
Examples as of Gradle 9.3.0: * `org.gradle.internal.operations.trace` – internal property * `org.gradle.configuration-cache` – public property of a stable feature * `org.gradle.configuration-cache.parallel` – public property of an unstable feature * `org.gradle.configuration-cache.internal.parallel-store` – internal property * `org.gradle.unsafe.isolated-projects` — public property of an unstable feature
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 06 09:25:54 GMT 2026 - 8K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/build.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ plugins { id("java-library") } description = "Provides a custom CodeNarc rule used by the Gradle build" group = "gradlebuild" dependencies { api(platform(projects.buildPlatform)) compileOnly(localGroovy()) compileOnly(buildLibs.codenarc) { exclude(group = "org.apache.groovy")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 975 bytes - Click Count (0) -
.github/workflows/codeql-analysis.yml
- name: Cache Gradle Modules uses: actions/cache@v5 with: path: | ~/.gradle/caches/modules-2/ ~/.gradle/caches/build-cache-1/ ~/.gradle/caches/signatures/ ~/.gradle/caches/keyrings/ key: ${{ runner.os }}-gradle-cache-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} if: ${{ matrix.language == 'java' }}Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 11 22:12:03 GMT 2025 - 4K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Primitives.java
// cast is safe: long.class and Long.class are both of type Class<Long> @SuppressWarnings("unchecked") Class<T> wrapped = (Class<T>) PRIMITIVE_TO_WRAPPER_TYPE.get(type); return (wrapped == null) ? type : wrapped; } /** * Returns the corresponding primitive type of {@code type} if it is a wrapper type; otherwise * returns {@code type} itself. Idempotent. * * <pre>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 28 01:26:26 GMT 2024 - 4.8K bytes - Click Count (0) -
build-logic-commons/build-platform/build.gradle.kts
plugins { `java-platform` } group = "gradlebuild" description = "Provides a platform that constrains versions of external dependencies used by Gradle" // To try out newer kotlin versions val kotlinVersion = providers.gradleProperty("buildKotlinVersion") .getOrElse(embeddedKotlinVersion) dependencies { constraints { val distributionDependencies = versionCatalogs.named("buildLibs")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 25 02:25:37 GMT 2026 - 897 bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.base-conventions.gradle.kts
import org.gradle.api.artifacts.VersionCatalogsExtension import okhttp3.buildsupport.platform import okhttp3.buildsupport.testJavaVersion import org.gradle.kotlin.dsl.withType import org.jetbrains.kotlin.gradle.tasks.KotlinCompile val libs = extensions.getByType<VersionCatalogsExtension>().named("libs") group = "com.squareup.okhttp3" version = "5.4.0-SNAPSHOT" val platform = project.platform val testJavaVersion = project.testJavaVersion
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 1.9K bytes - Click Count (0) -
build-logic/buildquality/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") } description = "Provides plugins to configure quality checks (incubating report, CodeNarc, et al)" dependencies { implementation("gradlebuild:basics") implementation(projects.cleanup) implementation(projects.documentation) implementation(projects.integrationTesting) implementation(projects.jvm) implementation(projects.performanceTesting)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 1.2K bytes - Click Count (0) -
settings.gradle.kts
google() } } rootProject.name = "okhttp-parent" dependencyResolutionManagement { repositories { mavenCentral() google() } } plugins { id("org.gradle.toolchains.foojay-resolver-convention") version("1.0.0") } include(":mockwebserver") project(":mockwebserver").name = "mockwebserver3" include(":mockwebserver-deprecated")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 2.3K bytes - Click Count (0)