Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,123 for parallels (0.16 sec)

  1. pkg/apis/batch/v1/defaults.go

    func SetDefaults_Job(obj *batchv1.Job) {
    	// For a non-parallel job, you can leave both `.spec.completions` and
    	// `.spec.parallelism` unset.  When both are unset, both are defaulted to 1.
    	if obj.Spec.Completions == nil && obj.Spec.Parallelism == nil {
    		obj.Spec.Completions = utilpointer.Int32(1)
    		obj.Spec.Parallelism = utilpointer.Int32(1)
    	}
    	if obj.Spec.Parallelism == nil {
    		obj.Spec.Parallelism = utilpointer.Int32(1)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 20:51:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/IntermediateBuildActionRunnerTest.groovy

        def buildModelParameters = Mock(BuildModelParameters)
        def runner = new IntermediateBuildActionRunner(buildOperationExecutor, buildModelParameters, "Test operation")
    
        def "parallelism is defined by Tooling API parallel actions"() {
            when:
            runner.isParallel()
    
            then:
            1 * buildModelParameters.isParallelToolingApiActions() >> true
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 17:58:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestProjects.groovy

                throw new IllegalArgumentException("Test project needs to specify -Xmx in gradle.properties. org.gradle.jvmargs = ${jvmArgs?.join(' ')}")
            }
            verifyGradlePropertiesSettingSpecified(gradleProperties, "org.gradle.parallel")
            verifyGradlePropertiesSettingSpecified(gradleProperties, "org.gradle.workers.max")
        }
    
        private static void verifyGradlePropertiesSettingSpecified(Properties gradleProperties, String propertyName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. tests/integration/README.md

                // ...
            }
    }
    ```
    
    Under the hood, this relies on Go's `t.Parallel()` and will, therefore, have the same behavior.
    
    A parallel test will run in parallel with siblings that share the same parent test. The parent test function
    will exit before the parallel children are executed. It should be noted that if the parent test is prevented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                }
            """)
            file('src/test/java/org/gradle/Tests.java') << """
                package org.gradle;
    
                import java.util.concurrent.*;
                import org.junit.jupiter.api.*;
                import org.junit.jupiter.api.parallel.*;
                import static org.junit.jupiter.api.Assertions.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. docs/pt/docs/async.md

    ### Hambúrgueres paralelos
    
    Você vai com seu _crush_ :heart_eyes: em uma lanchonete paralela.
    
    Você fica na fila enquanto alguns (vamos dizer 8) caixas pegam os pedidos das pessoas na sua frente.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

    # The number of tests that can run in parallel depends on what tests
    # are running and on the size of the node. Too many, and tests will
    # fail due to resource contention. 8 is a reasonable default for a
    # e2-standard-2 node.
    # Currently, parallelism only affects when REMOTE=true. For local test,
    # ginkgo default parallelism (cores - 1) is used.
    parallelism=${PARALLELISM:-8}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.1.golden

    	func (c *T) Log(args ...any)
    
    	// Logf formats its arguments according to the format, analogous ...
    	func (c *T) Logf(format string, args ...any)
    
    	// Parallel signals that this test is to be run in parallel with ...
    	func (t *T) Parallel()
    
    	// log generates the output. It's always at the same stack depth. 
    	func (c *T) log(s string)
    
    	// 
    	func (t *T) report()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/testing.go

    func (c *common) Fatalf(format string, args ...any) {
    	c.log(fmt.Sprintf(format, args...))
    	c.FailNow()
    }
    
    // Parallel signals that this test is to be run in parallel with (and only with)
    // other parallel tests in this CPU group.
    func (t *T) Parallel() {
    	t.signal <- (*T)(nil) // Release main testing loop
    	<-t.startParallel     // Wait for serial tests to finish
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  10. 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)
Back to top