Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for effort (0.28 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    		{name: "best-effort-high-priority-high-usage", priority: highPriority, requests: newResourceList("", "", ""), limits: newResourceList("", "", ""), memoryWorkingSet: "400Mi"},
    		{name: "best-effort-low-priority-low-usage", priority: lowPriority, requests: newResourceList("", "", ""), limits: newResourceList("", "", ""), memoryWorkingSet: "100Mi"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    	pod1 := newPod("best-effort-high", defaultPriority, []v1.Container{
    		newContainer("best-effort-high", newResourceList("", "", ""), newResourceList("", "", "")),
    	}, []v1.Volume{
    		newVolume("local-volume", v1.VolumeSource{
    			EmptyDir: &v1.EmptyDirVolumeSource{},
    		}),
    	})
    	pod2 := newPod("best-effort-low", defaultPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool any_nonconvergence = false;
      // If shape propagation fails for one function, return failure, but do not
      // early exit and attempt to propagate shapes for all provided functions to
      // have a best-effort propagation.
      for (func::FuncOp func : functions) {
        DCOMMENT("Propating shape to " << func.getName());
        ArrayRef<Operation*> callers = GetCallers(func);
        if (!llvm::hasSingleElement(callers) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    			// If we failed to delete it, that means something else
    			// grabbed it and is about to send on it.
    			if !deleted {
    				// TODO(bradfitz): rather than this best effort select, we
    				// should probably start a goroutine to read from req. This best
    				// effort select existed before the change to check 'deleted'.
    				// But if we know for sure it wasn't deleted and a sender is
    				// outstanding, we should probably block on req (in a new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    const freezeStopWait = 0x7fffffff
    
    // freezing is set to non-zero if the runtime is trying to freeze the
    // world.
    var freezing atomic.Bool
    
    // Similar to stopTheWorld but best-effort and can be called several times.
    // There is no reverse operation, used during crashing.
    // This function must not lock any mutexes.
    func freezetheworld() {
    	freezing.Store(true)
    	if debug.dontfreezetheworld > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Note: We could decide that vet should compute export data for
    	// all analyses, in which case we don't need to include the flags here.
    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    	// It seems better to let the flags disable export analysis too.
    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

    // RUN: tf-opt -split-input-file -tf-test-side-effect-analysis -verify-diagnostics %s | FileCheck %s
    
    // Tests that the pass tracks control dependencies for reads/writes on the same
    // resource.
    
    // CHECK-LABEL: func @non_aliasing_reads_writes
    func.func @non_aliasing_reads_writes(
    // expected-remark@above {{ID: 13}}
      %arg0: tensor<*x!tf_type.resource<tensor<32xf32>>>,
      %arg1: tensor<*x!tf_type.resource<tensor<32xf32>>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * If a maximum size is specified, a best-effort bounding is performed per segment, using a
       * page-replacement algorithm to determine which entries to evict when the capacity has been
       * exceeded.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * If a maximum size is specified, a best-effort bounding is performed per segment, using a
       * page-replacement algorithm to determine which entries to evict when the capacity has been
       * exceeded.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

            "properties": {
              "action": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
Back to top