Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 714 for Parallel (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

                        bar
                    }
    
                    dependencies {
                        bar "test:test-jar:1.0"
                    }
                }
            """
            executer.withArgument("--parallel")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/link/internal/ld/dwarf_test.go

    	}
    }
    
    const (
    	DefaultOpt = "-gcflags="
    	NoOpt      = "-gcflags=-l -N"
    	OptInl4    = "-gcflags=-l=4"
    	OptAllInl4 = "-gcflags=all=-l=4"
    )
    
    func TestRuntimeTypesPresent(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	dir := t.TempDir()
    
    	f := gobuild(t, dir, `package main; func main() { }`, NoOpt)
    	defer f.Close()
    
    	dwarf, err := f.DWARF()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/settings.gradle

    rootProject.name = 'parallel-test-execution'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/msan_test.go

    		t.Fatal(err)
    	}
    	// The msan tests require support for the -msan option.
    	if !platform.MSanSupported(goos, goarch) {
    		t.Skipf("skipping on %s/%s; -msan option is not supported.", goos, goarch)
    	}
    
    	t.Parallel()
    	// Overcommit is enabled by default on FreeBSD (vm.overcommit=0, see tuning(7)).
    	// Do not skip tests with stricter overcommit settings unless testing shows that FreeBSD has similar issues.
    	if goos == "linux" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/features/client_adapter.go

    // feature Gate and Registry interfaces. The component-base types Feature, FeatureSpec, and
    // prerelease, and the component-base prerelease constants, are duplicated by parallel types and
    // constants in client-go. The parallel types exist to allow the feature gate mechanism to be used
    // for client-go features without introducing a circular dependency between component-base and
    // client-go.
    type clientAdapter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/net/timeout_test.go

    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	t.Parallel()
    
    	ln := newLocalListener(t, "tcp")
    	defer func() {
    		if err := ln.Close(); err != nil {
    			t.Error(err)
    		}
    	}()
    
    	for _, tt := range dialTimeoutTests {
    		t.Run(fmt.Sprintf("%v/%v", tt.initialTimeout, tt.initialDelta), func(t *testing.T) {
    			// We don't run these subtests in parallel because we don't know how big
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_executor_test.go

    		t.Fatalf("Unable to start mount operations in Concurrent for non-attachable volumes")
    	}
    }
    
    func TestOperationExecutor_MountVolume_ConcurrentMountForAttachablePlugins(t *testing.T) {
    	t.Parallel()
    
    	// Arrange
    	ch, quit, oe := setup()
    	volumesToMount := make([]VolumeToMount, numVolumesToAttach)
    	pdName := "pd-volume"
    	volumeName := v1.UniqueVolumeName(pdName)
    	// Act
    	for i := range volumesToMount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. docs/de/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Dann sind Sie endlich an der Reihe und bestellen zwei sehr leckere Burger für Ihren Schwarm und Sie.
    
    Sie zahlen 💸.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration">
    
    Der Kassierer geht in die Küche.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ParallelForkingGradleExecuter.java

            args.addAll(super.getAllArgs());
            if (getDistribution().getVersion().compareTo(GradleVersion.version("2.3")) <= 0) {
                args.add("--parallel-threads=4");
            } else {
                args.add("--parallel");
                maybeSetMaxWorkers(args);
            }
            return args;
        }
    
        private void maybeSetMaxWorkers(List<String> args) {
            for (String arg : args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top