Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for Parallel (0.19 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    	if len(plugins) > 0 {
    		logger := klog.FromContext(ctx)
    		verboseLogs := logger.V(4).Enabled()
    		if verboseLogs {
    			logger = klog.LoggerWithName(logger, "Score")
    		}
    		// Run Score method for each node in parallel.
    		f.Parallelizer().Until(ctx, len(nodes), func(index int) {
    			nodeName := nodes[index].Node().Name
    			logger := logger
    			if verboseLogs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    	key  string
    }{
    	{"ECDSA", ecdsaCertPEM, ecdsaKeyPEM},
    	{"RSA", rsaCertPEM, rsaKeyPEM},
    	{"RSA-untyped", rsaCertPEM, keyPEM}, // golang.org/issue/4477
    }
    
    func TestX509KeyPair(t *testing.T) {
    	t.Parallel()
    	var pem []byte
    	for _, test := range keyPairTests {
    		pem = []byte(test.cert + test.key)
    		if _, err := X509KeyPair(pem, pem); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            final Deque<ActivationFrame> stk = new LinkedList<>();
    
            final Supplier<String> pathSupplier = () -> {
                final boolean parallel = false;
                return StreamSupport.stream(((Iterable<ActivationFrame>) stk::descendingIterator).spliterator(), parallel)
                        .map(ActivationFrame::location)
                        .collect(Collectors.joining("."));
            };
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-parallel-execute-to-islands`
    
    _Lowers device parallel_execute to executor islands_
    
    
    #### Options
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Use native <<#rel5.0:bom_import,BOM import>> in your builds.
     * The <<worker_api.adoc#worker_api,Worker API>> for enabling units of work to run in parallel.
     * A new API for <<#rel4.9:lazy_task_creation,creating and configuring tasks lazily>> that can significantly improve your build's configuration time.
    
    Other notable changes to be aware of that may break your build include:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            }
            final Deque<ActivationFrame> stk = new LinkedList<>();
    
            final Supplier<String> pathSupplier = () -> {
                final boolean parallel = false;
                return StreamSupport.stream(((Iterable<ActivationFrame>) stk::descendingIterator).spliterator(), parallel)
                        .map(ActivationFrame::location)
                        .collect(Collectors.joining("."));
            };
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    			return err
    		}
    	}
    	return nil
    }
    
    func runClientTestForVersion(t *testing.T, template *clientTest, version, option string) {
    	// Make a deep copy of the template before going parallel.
    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    	test.args = append([]string{option}, test.args...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		if have59 && !have516 {
    			testenv.SkipFlaky(t, 49065)
    		}
    	}
    
    	// Run a workload in a single goroutine, then run copies of the same
    	// workload in several goroutines. For both the serial and parallel cases,
    	// the CPU time the process measures with its own profiler should match the
    	// total CPU usage that the OS reports.
    	//
    	// We could also check that increases in parallelism (GOMAXPROCS) lead to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                configurations {
                    conf
                }
            """
            addDependenciesTo(otherBuildFile)
            otherBuildFile << """
                // this is for parallel execution
                checkDeps.mustRunAfter(rootProject.checkDeps)
            """
            given:
            def supplierInteractions = withPerVersionStatusSupplier(file("buildSrc/src/main/groovy/MP.groovy"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Specifically, they never can be:
    
    * up-to-date,
    * loaded from or stored in the <<build_cache.adoc#build_cache,build cache>>,
    * executed in parallel with other tasks, even if <<performance.adoc#parallel_execution,parallel execution>> is enabled,
    * executed incrementally.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top