Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 458 for Parallel (0.18 sec)

  1. pkg/controller/certificates/signer/signer_test.go

    		csr.Status.Conditions = append(csr.Status.Conditions, capi.CertificateSigningRequestCondition{
    			Type: capi.CertificateFailed,
    		})
    	}
    	return csr
    }
    
    func Test_signer_duration(t *testing.T) {
    	t.Parallel()
    
    	tests := []struct {
    		name              string
    		certTTL           time.Duration
    		expirationSeconds *int32
    		want              time.Duration
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "can create Visual Studio solution for multiproject depending on the same prebuilt binary from another project in parallel"() {
            given:
            createDirs("projectA", "projectB", "library")
            settingsFile.text = """
                rootProject.name = 'root'
                include ':projectA', ':projectB', ':library'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            reason = "these features hide incubating message"
        )
        def "presents incubating message with parallel mode"() {
            file("gradle.properties") << "org.gradle.configureondemand=false"
            buildFile << "task foo"
    
            when:
            run("foo", "--configure-on-demand", "--parallel")
    
            then:
            fixture.assertProjectsConfigured(":")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--max-workers`::
    Sets the maximum number of workers that Gradle may use. _Default is number of processors_.
    
    `--parallel`, `--no-parallel`::
    Build projects in parallel. For limitations of this option, see <<performance.adoc#parallel_execution, Parallel Project Execution>>. _Default is off_.
    
    `--priority`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. src/text/template/exec.go

    // If an error occurs executing the template or writing its output,
    // execution stops, but partial results may already have been written to
    // the output writer.
    // A template may be executed safely in parallel, although if parallel
    // executions share a Writer the output may be interleaved.
    func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error {
    	tmpl := t.Lookup(name)
    	if tmpl == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. src/net/http/clientserver_test.go

    // To run in a different set of configurations, pass a []testMode option.
    //
    // Tests call t.Parallel() by default.
    // To disable parallel execution, pass the testNotParallel option.
    func run[T TBRun[T]](t T, f func(t T, mode testMode), opts ...any) {
    	t.Helper()
    	modes := []testMode{http1Mode, http2Mode}
    	parallel := true
    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case []testMode:
    			modes = opt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    		"", "", "_ldap._tcp.google.com.",
    		"google.com.", "google.com.",
    	},
    }
    
    var backoffDuration = [...]time.Duration{time.Second, 5 * time.Second, 30 * time.Second}
    
    func TestLookupGoogleSRV(t *testing.T) {
    	t.Parallel()
    	mustHaveExternalNetwork(t)
    
    	if runtime.GOOS == "ios" {
    		t.Skip("no resolv.conf on iOS")
    	}
    
    	if !supportsIPv4() || !*testIPv4 {
    		t.Skip("IPv4 is required")
    	}
    
    	attempts := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.cc

                "strict SparseCore / TensorCore sequencing."),
           Flag("tf_xla_embedding_parallel_iterations",
                &build_ops_flags->tf_xla_embedding_parallel_iterations,
                "If >0 then use this many parallel iterations in "
                "embedding_pipelining and embedding_sequency. By default, use the "
                "parallel_iterations on the original model WhileOp."),
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/test/apis_meta_v1_unstructed_unstructure_test.go

    	unstruct.SetGeneration(ten)
    
    	if !reflect.DeepEqual(unstruct, want) {
    		t.Errorf("Wanted: \n%s\n Got:\n%s", want, unstruct)
    	}
    }
    
    func TestOwnerReferences(t *testing.T) {
    	t.Parallel()
    	trueVar := true
    	falseVar := false
    	refs := []metav1.OwnerReference{
    		{
    			APIVersion: "v2",
    			Kind:       "K2",
    			Name:       "n2",
    			UID:        types.UID("abc1"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 17.3K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /**
         * @return True if the <code>Mojo</code> is thread-safe and can be run safely in parallel
         * @since 3.0-beta-2
         */
        public boolean isThreadSafe() {
            return threadSafe;
        }
    
        /**
         * @param threadSafe indicates that the mojo is thread-safe and can be run safely in parallel
         * @since 3.0-beta-2
         */
        public void setThreadSafe(boolean threadSafe) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top