Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 364 for Runs (0.04 seconds)

  1. .github/workflows/update-jdks.yml

    on:
      workflow_dispatch: # Allows manual triggering of the action
      schedule: # Runs the action weekly on Monday at 3:42 UTC
        - cron: '42 3 * * 1'
    
    permissions:
      contents: write
      pull-requests: write
    
    jobs:
      update-jdks:
        if: github.repository == 'gradle/gradle'
        permissions:
          contents: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          - name: Checkout repository
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 09 22:14:16 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  2. src/Make.dist

    # license that can be found in the LICENSE file.
    
    # Run go tool dist to install a command.
    # The -v causes dist to print the name of each directory as it runs.
    # The -vv causes dist to print each build command as it runs.
    # go tool dist clean cleans all directories, not just this one,
    # but it's as close as we can get.
    
    # Default target (first).
    install:
    	go tool dist install -v
    
    verbose:
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Feb 08 20:26:47 GMT 2012
    - 553 bytes
    - Click Count (0)
  3. .github/workflows/tests.yml

    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['stable', 'oldstable']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v5
          with:
            go-version: ${{ matrix.go }}
    
        - name: Check out code into the Go module directory
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Mar 23 10:05:06 GMT 2026
    - 9K bytes
    - Click Count (0)
  4. .github/workflows/test.yml

          - opened
          - synchronize
      schedule:
        # cron every week on monday
        - cron: "0 0 * * 1"
    
    env:
      UV_NO_SYNC: true
      INLINE_SNAPSHOT_DEFAULT_FLAGS: review
    
    jobs:
      changes:
        runs-on: ubuntu-latest
        # Required permissions
        permissions:
          pull-requests: read
        # Set job outputs to values from filter step
        outputs:
          src: ${{ steps.filter.outputs.src }}
        steps:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 12:36:49 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  5. .github/workflows/test-redistribute.yml

    name: Test Redistribute
    
    on:
      push:
        branches:
          - master
      pull_request:
        types:
          - opened
          - synchronize
    
    jobs:
      test-redistribute:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v6
          - name: Set up Python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 12:33:49 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  6. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt

    }
    
    interface ModuleTargetRuntimes {
    
        /**
         * Declare that this Gradle module runs as part of the wrapper or as part of a client process.
         * Client processes include the Tooling API client or the CLI client.
         */
        val client: Property<Boolean>
    
        /**
         * Declare that this Gradle module runs as part of the Gradle daemon.
         */
        val daemon: Property<Boolean>
    
    
        /**
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  7. architecture/standards/0004-use-a-platform-architecture.md

    - **Runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    - **Configuration**: Allows the build structure and work, such as tasks, to be specified. This includes the project model, the DSL and so on.
    - **Execution**: Runs the work efficiently. This includes scheduling, execution, caching and so on.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LoggerUsageTask.java

    import java.io.File;
    
    /**
     * Runs LoggerUsageCheck on a set of directories.
     */
    @CacheableTask
    public class LoggerUsageTask extends PrecommitTask {
    
        private FileCollection classpath;
        private ExecOperations execOperations;
    
        @Inject
        public LoggerUsageTask(ExecOperations execOperations) {
            this.execOperations = execOperations;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  9. .github/workflows/typos.yml

    ---
    name: Spelling
    on: [pull_request]
    
    jobs:
      run:
        name: Spell Check with Typos
        runs-on: ubuntu-latest
        steps:
        - name: Checkout Actions Repository
          uses: actions/checkout@v4
    
        - name: Check spelling of repo
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 17 00:36:28 GMT 2024
    - 266 bytes
    - Click Count (0)
  10. .github/workflows/maven.yml

      MAVEN_OPTS: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./target/java_heapdump.hprof
      MVNW_REPOURL: https://maven-central.storage-download.googleapis.com/maven2
    
    jobs:
      initial-build:
        runs-on: ubuntu-latest
        steps:
          - name: Set up JDK
            uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
            with:
              java-version: 17
              distribution: 'temurin'
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 24 08:21:28 GMT 2026
    - 12.2K bytes
    - Click Count (0)
Back to Top