Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for Parallel (0.81 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    The build worker pool is shared across all build tasks. This means that when using <<performance.adoc#parallel_execution,parallel project execution>>, the maximum number of concurrent individual compilation operations does not increase. For example, if the build machine has 4 processing cores and 10 projects are compiling in parallel, Gradle will only use 4 total workers, not 40.
    
    [[sec:building_a_library]]
    == Building a library
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `maxParallelForks` — default: 1::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    					status: framework.NewStatus(framework.Skip),
    				},
    			},
    			disable: true,
    		},
    	}
    
    	for name, tc := range testcases {
    		// We can run in parallel because logging is per-test.
    		tc := tc
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    			nodes := tc.nodes
    			if nodes == nil {
    				nodes = []*v1.Node{workerNode}
    			}
    			testCtx := setup(t, nodes, tc.claims, tc.classes, tc.schedulings, tc.objs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    	linkshared     = flag.Bool("linkshared", false, "")
    	updateErrors   = flag.Bool("update_errors", false, "update error messages in test file based on compiler output")
    	runoutputLimit = flag.Int("l", defaultRunOutputLimit(), "number of parallel runoutput tests to run")
    	force          = flag.Bool("f", false, "ignore expected-failure test lists")
    	target         = flag.String("target", "", "cross-compile tests for `goos/goarch`")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			t.Parallel()
    			for validRule, expectedCost := range tt.expectCost {
    				validRule := validRule
    				expectedCost := expectedCost
    				testName := validRule
    				if len(testName) > 127 {
    					testName = testName[:127]
    				}
    				t.Run(testName, func(t *testing.T) {
    					t.Parallel()
    					s := withRule(*tt.schema, validRule)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// pod-1, etc) and the controller will wait until each pod is ready before
    	// continuing. When scaling down, the pods are removed in the opposite order.
    	// The alternative policy is `Parallel` which will create pods in parallel
    	// to match the desired scale without waiting, and on scale down will delete
    	// all pods at once.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    	// ConnectionState of the resulting connection. It returns false if the
    	// ConnectionState is unacceptable.
    	validate func(ConnectionState) error
    	// wait, if true, prevents this subtest from calling t.Parallel.
    	// If false, runServerTest* returns immediately.
    	wait bool
    }
    
    var defaultClientCommand = []string{"openssl", "s_client", "-no_ticket"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// pod-1, etc) and the controller will wait until each pod is ready before
    	// continuing. When scaling down, the pods are removed in the opposite order.
    	// The alternative policy is `Parallel` which will create pods in parallel
    	// to match the desired scale without waiting, and on scale down will delete
    	// all pods at once.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    func TestPodAddsBatching(t *testing.T) {
    	t.Parallel()
    
    	type podAdd struct {
    		delay time.Duration
    	}
    
    	tests := []struct {
    		name             string
    		batchPeriod      time.Duration
    		adds             []podAdd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		// If using t.Parallel() you must copy the iteration to a new local variable
    		// https://github.com/golang/go/wiki/CommonMistakes#using-goroutines-on-loop-iterator-variables
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			t.Parallel()
    			// Setup kube caches
    			controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top