Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 59 for nuns (0.01 seconds)

  1. .github/workflows/maven.yml

    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
      workflow_dispatch:
    
    jobs:
      build:
        runs-on: ubuntu-24.04
        env:
          PARENT_BRANCH: main
        timeout-minutes: 15
        steps:
        - uses: actions/checkout@v4
        - name: Set up JDK 21
          uses: actions/setup-java@v4
          with:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  2. architecture/runtimes.md

    # Gradle runtimes
    
    Gradle is made up of the following processes that work together to "run the build":
    
    - Gradle daemon. This is the process that actually runs the build. It hosts build logic and coordinates the lifecycle of the build. It is a long-running daemon process.
    - CLI client. This is the `gradle` or `gradlew` command, and is responsible for locating, starting and interacting with the Gradle daemon, potentially downloading the Gradle distribution. 
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  3. .github/workflows/update-perf-test-buckets.yml

    on:
      schedule:
        - cron: '53 3 * * 1'
      workflow_dispatch:
    
    permissions:
      contents: write
      id-token: write
      pull-requests: write
    
    jobs:
      update-perf-test-buckets:
        runs-on: ubuntu-latest
    
        if: github.repository == 'gradle/gradle'
    
        steps:
          - name: Checkout repository
            uses: actions/checkout@v6
          - name: configure aws credentials
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  4. .github/workflows/update-test-buckets.yml

    on:
      schedule:
        - cron: '42 2 * * 1' # Every monday 2:42am UTC
      workflow_dispatch:
    
    permissions:
      contents: write
      id-token: write
      pull-requests: write
    
    jobs:
      update-test-buckets:
        runs-on: ubuntu-latest
    
        if: github.repository == 'gradle/gradle'
    
        steps:
          - name: Checkout repository
            uses: actions/checkout@v6
          - name: configure aws credentials
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  5. .github/workflows/cleanup-stale-performance-data.yml

    on:
      schedule:
        - cron: '0 4 * * 1'  # Run every Monday at 4:00 AM UTC
      workflow_dispatch:
    
    permissions:
      contents: read
      id-token: write
    
    jobs:
      cleanup-stale-performance-data:
        runs-on: ubuntu-latest
    
        if: github.repository == 'gradle/gradle'
    
        steps:
          - name: Checkout repository
            uses: actions/checkout@v6
          
          - name: Configure AWS credentials
    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)
  6. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                    return "";
                }
            });
    
            mimeTypeHelper.init();
    
            // With empty config, no override is applied; content-based detection runs
            try (InputStream is = new ByteArrayInputStream(SQL_REM_CONTENT.getBytes(StandardCharsets.UTF_8))) {
                final String contentType = mimeTypeHelper.getContentType(is, "test.sql");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                        "clean",
                        "performance:${testProject}PerformanceAdHocTest",
                        tests.map { """--tests "$it"""" }.joinToString(" "),
                        """--warmups 2 --runs 2 --checks none""",
                        "-PtestJavaVersion=${os.perfTestJavaVersion.major}",
                        "-PtestJavaVendor=${os.perfTestJavaVendor.name.lowercase()}",
                        "-PautoDownloadAndroidStudio=true",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 08 01:31:13 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. src/main/resources/fess_indices/fess/pt-br/stopwords.txt

    quer
    se
    seja
    sem
    sendo
    seu
    seus
    sob
    sobre
    sua
    suas
    tal
    tambem
    teu
    teus
    toda
    todas
    todo
    todos
    tua
    tuas
    tudo
    um
    uma
    umas
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 820 bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

             */
            public MonitorThread(final Process process, final long timeout) {
                this.process = process;
                this.timeout = timeout;
            }
    
            /**
             * Runs the monitor thread, sleeping for the timeout duration and terminating the process if needed.
             */
            @Override
            public void run() {
                ThreadUtil.sleepQuietly(timeout);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  10. .teamcity/src/main/kotlin/configurations/Gradleception.kt

         3. Build a Gradle distribution using dogfood-first with this hash as a version + fixed timestamp different from the one above -> dogfood-second
         4. Use dogfood-second to run a Gradle build which runs tests.
    
         */
            val dogfoodTimestamp1 = "19800101010101+0000"
            val dogfoodTimestamp2 = "19800202020202+0000"
            val buildScanTagForType = buildScanTagParam("Gradleception")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 7.1K bytes
    - Click Count (0)
Back to Top