Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 455 for parallels (0.28 sec)

  1. src/cmd/go/testdata/script/test_fail_fast.txt

    	t.Logf("LOG: %s", t.Name())
    }
    
    func TestParallelFailingA(t *testing.T) {
    	t.Parallel()
    	t.Errorf("FAIL - %s", t.Name())
    }
    
    func TestParallelFailingB(t *testing.T) {
    	t.Parallel()
    	t.Errorf("FAIL - %s", t.Name())
    }
    
    func TestParallelFailingSubtestsA(t *testing.T) {
    	t.Parallel()
    	t.Run("TestFailingSubtestsA1", func(t *testing.T) {
    		t.Errorf("FAIL - %s", t.Name())
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/cap_freebsd.go

    import (
    	"errors"
    	"fmt"
    )
    
    // Go implementation of C mostly found in /usr/src/sys/kern/subr_capability.c
    
    const (
    	// This is the version of CapRights this package understands. See C implementation for parallels.
    	capRightsGoVersion = CAP_RIGHTS_VERSION_00
    	capArSizeMin       = CAP_RIGHTS_VERSION_00 + 2
    	capArSizeMax       = capRightsGoVersion + 2
    )
    
    var (
    	bit2idx = []int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/parallelize/parallelism.go

    )
    
    // DefaultParallelism is the default parallelism used in scheduler.
    const DefaultParallelism int = 16
    
    // Parallelizer holds the parallelism for scheduler.
    type Parallelizer struct {
    	parallelism int
    }
    
    // NewParallelizer returns an object holding the parallelism.
    func NewParallelizer(p int) Parallelizer {
    	return Parallelizer{parallelism: p}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:12:30 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. releasenotes/notes/agent-dns-forward-parallel.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 39598
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 15 11:15:33 UTC 2022
    - 308 bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageParallelIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can execute assembler tasks in parallel"() {
            given:
            withComponentForApp()
            createTaskThatRunsInParallelUsingCustomToolchainWith("assembleMainExecutableMainAsm")
            buildFile << """
                // prevent assembly and c compile tasks from running in parallel
                // this is because we don't want the c compile tasks to accidentally use
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourceParallelIntegrationTest.groovy

        def "can execute compile windows resource tasks in parallel"() {
            given:
            withComponentsForAppAndSharedLib()
            createTaskThatRunsInParallelUsingCustomToolchainWith("compileMainLibSharedLibraryMainLibRc")
            buildFile << """
                // prevent windows resource and cpp compile tasks from running in parallel
                // this is because we don't want the cpp compile tasks to accidentally use 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top