- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 68 for somme (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu May 15 17:05:08 GMT 2025 - 18K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractJavaNullabilityChangesTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 04 09:55:47 GMT 2025 - 5.1K bytes - Click Count (0) -
architecture/README.md
While a lot of Gradle source code runs only in the Gradle daemon, not all of it does so. When working on some source code it is important to be aware of the runtimes in which it will run, so that you don't break these constraints. There is some assistance in the IDE for this plus a lot of validation that is applied at build time and on CI, but it is useful to keep these constraints in mind as well.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 3.6K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinNullabilityChangesTest.kt
checkNotBinaryCompatibleKotlin( v1 = """ class Source(some: String?) { var someVar: String? = null fun foo(bar: String?) {} } """, v2 = """ class Source(some: String) { var someVar: String = "some" fun foo(bar: String) {} } """Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 04 09:55:47 GMT 2025 - 5K bytes - Click Count (0) -
architecture/build-execution-model.md
# Build execution model At the highest level, Gradle's execution model is quite simple: Below is the protocol in some more detail: 1. The client looks for a compatible idle daemon. If there isn't one, it starts a new daemon. 2. The client connects to the idle daemon and sends it a request to do some work. If the daemon is no longer running, the client starts again.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 907 bytes - Click Count (0) -
build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy
-Dorg.gradle.daemon.idletimeout=120000 -Dorg.gradle.daemon.registry.base=C:\\some\\agent\\workspace\\build\\daemon -Dorg.gradle.native.dir=C:\\some\\agent\\workspace\\intTestHomeDir\\worker-1\\native -Dorg.gradle.deprecation.trace=true -Djava.io.tmpdir=C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\tmp -Dfile.encoding=windows-1252 -Dorg.gradle.classloaderscope.strict=true -ea -ea "-Dorg.gradle.appname=gradle" -classpath "C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\integ test\\bin\\..\\li...
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jul 12 03:42:46 GMT 2024 - 14.8K bytes - Click Count (0) -
CONTRIBUTING.md
* Be careful when using features introduced in Java 9 or later. Some parts of Gradle still need to run on Java 8. * Normalize file paths in tests. The `org.gradle.util.internal.TextUtil` class has some useful functions for this purpose. You can consult the [Architecture documentation](architecture) to learn about some of the architecture of Gradle.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
architecture/standards/0007-java-pre-requisite.md
The Wrapper then downloads the Gradle distribution (if necessary), starts the Launcher and runs the build, spawning and connecting to other processes such as the Daemon as required. Embedding a Java runtime in the distribution would provide some benefits, such as allowing the Launcher, Daemon and Workers to run on it, removing the prerequisite of an installed Java runtime.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.2K bytes - Click Count (0) -
build-logic-commons/publishing/build.gradle.kts
plugins { `kotlin-dsl` } group = "gradlebuild" description = "Provides a plugin for publishing some of Gradle's subprojects to Artifactory or the Plugin Portal" dependencies { implementation(projects.basics) implementation(projects.moduleIdentity) implementation(buildLibs.publishPlugin)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 310 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java
} @Test public void test_crawlingInfoPager_clear() { final CrawlingInfoPager pager = new CrawlingInfoPager(); pager.id = "some-id"; pager.sessionId = "some-session"; pager.setCurrentPageNumber(5); pager.clear(); assertNull(pager.id); assertNull(pager.sessionId); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 6.1K bytes - Click Count (0)