Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 458 for Parallel (0.32 sec)

  1. cluster/gce/upgrade.sh

            # Wait for each of the parallel node upgrades to finish.
            for pid in "${pids[@]}"; do
              wait "$pid"
              ret_code_sum=$(( ret_code_sum + $? ))
            done
            # Return even if at least one of the node upgrades failed.
            if [[ ${ret_code_sum} != 0 ]]; then
              echo "== Some of the ${node_upgrade_parallelism} parallel node upgrades failed. =="
              return ${ret_code_sum}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            when:
            provider.get()
    
            then:
            def e2 = thrown(RuntimeException)
            e2.is(e)
            BrokenServiceImpl.attempts == 1
        }
    
        def "service has no max parallel usages by default"() {
            expect:
            registerService("service", ServiceImpl) {
                assert !it.maxParallelUsages.present
            }
            def registration = registry.registrations.getByName("service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "running tasks in parallel with exclusions does not cause incorrect builds"() {
            // This test is inspired by our build setup where we found this problem:
            // We zip the source distribution by using an archive task starting from the root project.
            // This caused problems when building the JARs in parallel.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                    for (String s : MultilineMessageHelper.format(
                            "Your build is requesting parallel execution, but this project contains the following "
                                    + "plugin(s) that have goals not marked as thread-safe to support parallel execution.",
                            "While this /may/ work fine, please look for plugin updates and/or "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    // a call to "RegisterChildDIEOffsets", at which point the offsets
    // needed to apply fixups are captured. Finally, once the parallel
    // portion of the compilation is done, fixups can actually be applied
    // during the "Finalize" method (this can't be done during the
    // parallel portion of the compile due to the possibility of data
    // races).
    //
    // This table is also used to record the "precursor" function node for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/ca_test.go

    	rootCertCheckInverval := time.Hour
    	rsaKeySize := 2048
    
    	client := fake.NewSimpleClientset()
    
    	parallel := 10
    	wg := sync.WaitGroup{}
    	wg.Add(parallel)
    	rootCertCh := make(chan []byte, parallel)
    	privateKeyCh := make(chan []byte, parallel)
    
    	for i := 0; i < parallel; i++ {
    		go func() {
    			defer wg.Done()
    			// succeed creating a self-signed cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

        // end of the pipeline. Mostly, it will rely on side effect analysis by
        // considering accessing resource only. However, for branches under parallel
        // group, there should not be any control deps between them even side effect
        // analysis indicate some control deps. Therefore, we will mark parallel
        // group and branch information here so that `UpdateControlDependenciesPass`
        // can fetch the related information later.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

      local parallel=false
      if [[ ${#platforms[@]} -gt 1 ]]; then
        local gigs
        gigs=$(kube::golang::get_physmem)
    
        if [[ ${gigs} -ge ${KUBE_PARALLEL_BUILD_MEMORY} ]]; then
          kube::log::status "Multiple platforms requested and available ${gigs}G >= threshold ${KUBE_PARALLEL_BUILD_MEMORY}G, building platforms in parallel"
          parallel=true
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <h4>Parallel Execution</h4>
     * <p>
     * By default, tasks are not executed in parallel unless a task is waiting on asynchronous work and another task (which
     * is not dependent) is ready to execute.
     *
     * Parallel execution can be enabled by the <code>--parallel</code> flag when the build is initiated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. pkg/dns/client/dns.go

    	}
    
    	if response == nil {
    		response = serverFailure(req)
    	}
    	return response
    }
    
    // queryUpstreamParallel will send parallel queries to all nameservers and return first successful response immediately.
    // The overall approach of parallel resolution is likely not widespread, but there are already some widely used
    // clients support it:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top