Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 148 for Parallelism (0.15 sec)

  1. src/embed/internal/embedtest/embed_test.go

    	testFiles(t, global, "testdata/hello.txt", "hello, world\n")
    	testFiles(t, global, "testdata/glass.txt", "I can eat glass and it doesn't hurt me.\n")
    
    	if err := fstest.TestFS(global, "concurrency.txt", "testdata/hello.txt"); err != nil {
    		t.Fatal(err)
    	}
    
    	testString(t, concurrency, "concurrency", "Concurrency is not parallelism.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 20:10:16 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

            devices) {
      int64_t num_replicas = replicate.getN();
      assert(new_inputs.size() == num_replicas);
    
      // As model parallelism is not yet supported, we assume that all ops are
      // placed in logical core 0.
      // TODO(b/148913020): Remove this constraint once model parallelism is
      // supported.
      assert(devices.find(tensorflow::GetDeviceAliasForLogicalCore(0))
                 ->getSecond()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/scheme/scheme_test.go

          foo: bar
        name: OutOfTreePlugin
    `,
    		},
    		{
    			name:    "v1 in-tree and out-of-tree plugins from internal",
    			version: v1.SchemeGroupVersion,
    			obj: &config.KubeSchedulerConfiguration{
    				Parallelism:           8,
    				DelayCacheUntilActive: true,
    				Profiles: []config.KubeSchedulerProfile{
    					{
    						PluginConfig: []config.PluginConfig{
    							{
    								Name: "InterPodAffinity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. src/compress/flate/example_test.go

    // by taking advantage of previously allocated memory.
    func Example_reset() {
    	proverbs := []string{
    		"Don't communicate by sharing memory, share memory by communicating.\n",
    		"Concurrency is not parallelism.\n",
    		"The bigger the interface, the weaker the abstraction.\n",
    		"Documentation is for users.\n",
    	}
    
    	var r strings.Reader
    	var b bytes.Buffer
    	buf := make([]byte, 32<<10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1/generated.proto

      // be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism),
      // i.e. when the work left to do is less than max parallelism.
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
      // +optional
      optional int32 parallelism = 1;
    
      // Specifies the desired number of successfully finished pods the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    	bytes            int64
    	missingBytes     bool // one of the subbenchmarks does not have bytes set.
    	timerOn          bool
    	showAllocResult  bool
    	result           BenchmarkResult
    	parallelism      int // RunParallel creates parallelism*GOMAXPROCS goroutines
    	// The initial states of memStats.Mallocs and memStats.TotalAlloc.
    	startAllocs uint64
    	startBytes  uint64
    	// The net total of this test after being run.
    	netAllocs uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. pkg/controller/job/metrics/metrics.go

    	// when the number of active Pods is less than the wanted Job parallelism.
    	JobSyncActionPodsCreated = "pods_created"
    	// JobSyncActionPodsDeleted when the controller deletes Pods. This can happen
    	// if a Job is suspended or if the number of active Pods is more than
    	// parallelism.
    	JobSyncActionPodsDeleted = "pods_deleted"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            throws InterruptedException {
                        setCorePoolSize(parallelism + parked.incrementAndGet());
                        try {
                            return super.invokeAll(tasks);
                        } finally {
                            setCorePoolSize(parallelism + parked.decrementAndGet());
                        }
                    }
                };
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/batch/v1/types.go

    	// be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism),
    	// i.e. when the work left to do is less than max parallelism.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
    	// +optional
    	Parallelism *int32 `json:"parallelism,omitempty" protobuf:"varint,1,opt,name=parallelism"`
    
    	// Specifies the desired number of successfully finished pods the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top