- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 153 for rrun (0.01 seconds)
-
architecture/standards/0007-java-pre-requisite.md
* The [Gradle Tooling API client](https://docs.gradle.org/8.8/userguide/third_party_integration.html#embedding) * This requires a Java application, and thus runtime, to run the tooling API client As indicated, each of those components require a Java runtime to run. The recommended way of invoking Gradle is to use the Gradle Wrapper.
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) -
.github/workflows/maven.yml
- name: Install fess-parent run: | cd fess-parent mvn install -Dgpg.skip=true - name: Download Plugins with Maven run: mvn -B antrun:run --file pom.xml - name: Build with Maven run: mvn -B source:jar javadoc:jar package --file pom.xml -Dparallel=classes -DthreadCount=4 -DforkCount=1C -DreuseForks=true - name: Run Fess run: bash src/test/resources/before_script.shCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 1.5K bytes - Click Count (0) -
CLAUDE.md
mvn rpm:rpm # Build .rpm package mvn jdeb:jdeb # Build .deb package ``` ### Testing ```bash mvn test # Run unit tests (*Test.java) mvn test -Dtest=ClassName # Run single unit test # To install fess jar for plugin dependency resolution: # Change pom.xml <packaging>war</packaging> to <packaging>jar</packaging> first
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
.teamcity/scripts/CheckWrapper.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 6.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTaskIntegrationTest.kt
] } """.trimIndent() ) val initialVerifyResult = run(":verifyAcceptedApiChangesOrdering").buildAndFail() assertEquals(TaskOutcome.FAILED, initialVerifyResult.task(":verifyAcceptedApiChangesOrdering")!!.outcome) val sortingResult = run(":sortAcceptedApiChanges").build() assertEquals(TaskOutcome.SUCCESS, sortingResult.task(":sortAcceptedApiChanges")!!.outcome)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 9.7K bytes - Click Count (0) -
.github/workflows/codeql-analysis.yml
if: ${{ matrix.language == 'java' && github.repository_owner != 'gradle' }} run: ./gradlew --init-script .github/workflows/codeql-analysis.init.gradle -S testClasses - name: Cleanup Gradle Daemons run: ./gradlew --stop if: ${{ matrix.language == 'java' }} # âšī¸ Command-line programs to run using the OS shell. # đ https://git.io/JvXDlCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 11 22:12:03 GMT 2025 - 4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AnonymousClassesFilteringTest.kt
public void some() { Runnable anon = new Runnable() { @Override public void run() {} }; anon.run(); } } """ ) { assertEmptyReport() } } @Test
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 1.8K bytes - Click Count (0) -
.github/workflows/cleanup-stale-performance-data.yml
- name: Extract database host from URL run: | # jdbc:mysql://gradle-bt-performance.xyz.eu-central-1.rds.amazonaws.com:3306 -> gradle-bt-performance.xyz.eu-central-1.rds.amazonaws.com echo "DB_HOST=$(echo ${PERFORMANCE_DB_URL} | cut -d/ -f3 | cut -d: -f1)" >> $GITHUB_ENV - name: Clean up stale data and verify results run: | echo "Cleaning up stale data from both databases..."Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Mar 24 22:05:21 GMT 2026 - 2.6K bytes - Click Count (0) -
.github/workflows/contributor-pr.yml
- run: ./gradlew ${{ matrix.bucket.tasks }} -DdisableLocalCache=true -PflakyTests=exclude ${{ needs.build.outputs.sys-prop-args }} unit-test-windows-arm: name: "Unit Test Windows ARM" permissions: contents: read runs-on: windows-11-arm needs: build defaults: run: shell: pwsh steps: - name: git cloneCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 22:06:44 GMT 2026 - 5K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
val projectPathToLeftoverFiles = mutableMapOf<String, LeftoverFiles>() // First run: delete any temporary directories used to extract resources from jars projectStates.values.forEach { projectState -> cleanUp(projectState.tmpExtractedResourcesDirs()) } // Second run: collect and archive leftover files
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1)