Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for Usages (0.16 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// assume cache).
    	//
    	// It uses cache.MetaNamespaceKeyFunc to generate object names, which
    	// therefore are "<namespace>/<name>".
    	//
    	// This is necessary to ensure that reconstructing the resource usage
    	// at the start of a pod scheduling cycle doesn't reuse the resources
    	// assigned to such a claim. Alternatively, claim allocation state
    	// could also get tracked across pod scheduling cycles, but that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	// a syscall, so its overhead is nontrivial). Higher values
    	// make the system less responsive to incoming work.
    	drainCheckThreshold = 100000
    
    	// pagesPerSpanRoot indicates how many pages to scan from a span root
    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        }
      });
    
      return failure(has_illegal_ops);
    }
    
    // Converts a set of TF2XLA ops into pure TF ops for future legalizations as
    // TF2XLA ops aren't supported by later stages.
    LogicalResult ConvertTf2XlaOps(func::FuncOp func, MLIRContext *context) {
      ConversionTarget target(*context);
      target.addLegalDialect<arith::ArithDialect>();
      target.addLegalDialect<func::FuncDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// ClusterUpdate describes a push triggered by a Cluster change
    	ClusterUpdate TriggerReason = "cluster"
    )
    
    // Merge two update requests together
    // Merge behaves similarly to a list append; usage should in the form `a = a.merge(b)`.
    // Importantly, Merge may decide to allocate a new PushRequest object or reuse the existing one - both
    // inputs should not be used after completion.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
     * ```java
     * // The singleton HTTP client.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Capacity: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Images: []corev1.ContainerImage{
    				{
    					Names: []string{"test"},
    				},
    			},
    			Conditions: []corev1.NodeCondition{
    				{
    					Type: corev1.NodeMemoryPressure,
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    // indexes or invalid indexes or some pods don't have indexes.
    // Sorts candidate pods in the order such that not-ready < ready, unscheduled
    // < scheduled, and pending < running. This ensures that we delete pods
    // in the earlier stages whenever possible.
    func activePodsForRemoval(job *batch.Job, pods []*v1.Pod, rmAtLeast int) []*v1.Pod {
    	var rm, left []*v1.Pod
    
    	if isIndexedJob(job) {
    		rm = make([]*v1.Pod, 0, rmAtLeast)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # node startup steps!
    # Pull-InfraContainer must be called AFTER Verify-WorkerServices.
    function Pull-InfraContainer {
      $name, $label = ${env:INFRA_CONTAINER} -split ':',2
      if (-not ("$(& crictl images)" -match "$name.*$label")) {
        & crictl pull ${env:INFRA_CONTAINER}
        if (!$?) {
          throw "Error running 'crictl pull ${env:INFRA_CONTAINER}'"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	result := m.SyncPod(context.Background(), pod, &kubecontainer.PodStatus{}, []v1.Secret{}, backOff)
    	assert.NoError(t, result.Error())
    	assert.Equal(t, 2, len(fakeRuntime.Containers))
    	assert.Equal(t, 2, len(fakeImage.Images))
    	assert.Equal(t, 1, len(fakeRuntime.Sandboxes))
    	for _, sandbox := range fakeRuntime.Sandboxes {
    		assert.Equal(t, runtimeapi.PodSandboxState_SANDBOX_READY, sandbox.State)
    	}
    	for _, c := range fakeRuntime.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

     * </ul>
     *
     * <p>These features are all optional; caches can be created using all or none of them. By default,
     * cache instances created by {@code CacheBuilder} will not perform any type of eviction.
     *
     * <p>Usage example:
     *
     * <pre>{@code
     * LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder()
     *     .maximumSize(10000)
     *     .expireAfterWrite(Duration.ofMinutes(10))
     *     .removalListener(MY_LISTENER)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top