Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for Parallelizer (0.27 sec)

  1. pkg/scheduler/scheduler.go

    	schedulerapi "k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/scheme"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    	frameworkplugins "k8s.io/kubernetes/pkg/scheduler/framework/plugins"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/noderesources"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

            "@absl_py//absl/logging",
        ],
    )
    
    tf_py_strict_test(
        name = "quantize_model_test",
        size = "medium",
        srcs = ["integration_test/quantize_model_test.py"],
        shard_count = 50,  # Parallelize the test to avoid timeouts.
        tags = [
            "no_mac",  # TODO(b/292100835): Reenable
        ],
        deps = [
            ":quantize_model",
            ":quantize_model_test_base",
            ":representative_dataset",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/server-workers.md

    ## Deployment Concepts
    
    Here you saw how to use **Gunicorn** (or Uvicorn) managing **Uvicorn worker processes** to **parallelize** the execution of the application, take advantage of **multiple cores** in the CPU, and be able to serve **more requests**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/mvs/mvs.go

    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic.go

    			// TODO: If many pods changed during the same relist period,
    			// inspecting the pod and getting the PodStatus to update the cache
    			// serially may take a while. We should be aware of this and
    			// parallelize if needed.
    			if err, updated := g.updateCache(ctx, pod, pid); err != nil {
    				// Rely on updateCache calling GetPodStatus to log the actual error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    [source,groovy]
    ----
    dependencies {
       // this is unsafe!
       implementation project(":other").tasks.someOtherJar
    }
    ----
    
    This publication model is _unsafe_ and can lead to non-reproducible and hard to parallelize builds.
    This section explains how to _properly create cross-project boundaries_ by defining "exchanges" between projects by using _variants_.
    --
    
    There are two, complementary, options to share artifacts between projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. src/runtime/proc_test.go

    			// acts once as sender and once as receiver, so each
    			// goroutine spins for delay twice.
    			//
    			// BenchmarkWakeupParallel is used to estimate how
    			// efficiently the scheduler parallelizes goroutines in
    			// the presence of blocking:
    			//
    			// - If both goroutines are executed on the same core,
    			// an increase in delay by N will increase the time per
    			// iteration by 4*N, because all 4 delays are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	configv1 "k8s.io/kubernetes/pkg/scheduler/apis/config/v1"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/defaultbinder"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/interpodaffinity"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_test.go

    	if upd, err := adsc.Wait(15*time.Second, watchAll...); err != nil {
    		t.Fatal("Expecting CDS, EDS, LDS, and RDS update as part of a full push", err, upd)
    	}
    }
    
    // This test must be run in isolation, can't be parallelized with any other v2 test.
    // It makes different kind of updates, and checks that incremental or full push happens.
    // In particular:
    // - just endpoint changes -> incremental
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * AWS kube-down: Issue warning if VPC not found ([#27518](https://github.com/kubernetes/kubernetes/pull/27518), [@justinsb](https://github.com/justinsb))
    * gce/kube-down: Parallelize IGM deletion, batch more ([#27302](https://github.com/kubernetes/kubernetes/pull/27302), [@zmerlynn](https://github.com/zmerlynn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top