Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 871 for Forked (0.1 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            } else {
                "workerExecutor.${actionName == 'Forked' ? 'process' : 'no'}Isolation().submit(${actionName}WorkAction) { }"
            }
        }
    
        def "generates events for worker actions executed in-process and forked"() {
            given:
            settingsFile << "rootProject.name = 'single'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. hack/verify-shellcheck.sh

      # - ./.git/* - Ignore anything in the git object store.
      # - ./vendor* - Vendored code should be fixed upstream instead.
      # - ./third_party/*, but re-include ./third_party/forked/*  - only code we
      #    forked should be linted and fixed.
      while IFS=$'\n' read -r script;
        do git check-ignore -q "$script" || scripts_to_check+=("$script");
      done < <(find . -name "*.sh" \
        -not \( \
          -path ./_\*      -o \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                // forked phase
                if (md.getExecuteLifecycle() != null && !md.getExecuteLifecycle().isEmpty()) {
                    buff.append('[');
                    buff.append(md.getExecuteLifecycle());
                    buff.append(']');
                }
                buff.append(md.getExecutePhase());
            } else {
                // forked goal
                buff.append(':');
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            }
    
            then:
            events.tests.size() == 2 * (1 + 2 + 2 + 6)  // two test tasks with each: 1 root suite, 2 worker processes, 2 tests classes, 6 tests
            events.successful.size() == 8 // two test tasks with 4 tests
            events.failed.size() == 14 // two test tasks with: 1 root suite, 2 worker processes, 2 test classes, 2 tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/concurrent/WorkerLimits.java

    /**
     * Limits configured for workers in the current build.
     * <p>
     * Workers can be threads, processes or whatever Gradle considers a "worker".
     * <p>
     * Some examples:
     * <ul>
     *     <li>A thread running a task</li>
     *     <li>A test process</li>
     *     <li>A language compiler in a forked process</li>
     * </ul>
     */
    @NonNullApi
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface WorkerLimits {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:30:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ForkCapableRelocationIntegrationTest.groovy

        abstract String getDaemonConfiguration()
    
        abstract String getForkOptionsObject()
    
        def "can provide relocatable command line arguments to forked daemons"() {
            def originalDir = file("original-dir")
            originalDir.file("settings.gradle") << localCacheConfiguration()
            setupProjectWithJavaAgentIn(originalDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. hack/update-netparse-cve.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script replace "net" stdlib IP and CIDR parsers
    # with the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/update-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/lib/lib-grid.libsonnet

    local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
    
    local panelUtil = import 'github.com/grafana/grafonnet/gen/grafonnet-v11.0.0/custom/util/panel.libsonnet';
    
    // This is forked from https://grafana.github.io/grafonnet/API/util.html#obj-grid
    // to allow automatic width to fill the grid
    {
      local root = self,
    
      local gridWidth = 24,
    
      '#makeGrid':: d.func.new(
        |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/MultiRequestWorkerProcessBuilder.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.internal.serialize.Serializer;
    
    /**
     * Configures and builds multi-request workers. A multi-request worker runs zero or more requests in a forked worker process.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. .github/workflows/maven_build_itself.yml

    # under the License.
    
    name: Can Maven build itself
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top