Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for below (0.1 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    	expected := []*v1.Pod{exceeds, below}
    	for i := range expected {
    		if pods[i] != expected[i] {
    			t.Errorf("Expected pod: %s, but got: %s", expected[i].Name, pods[i].Name)
    		}
    	}
    }
    
    func TestOrderedByExceedsRequestDisk(t *testing.T) {
    	below := newPod("below-requests", -1, []v1.Container{
    		newContainer("below-requests", v1.ResourceList{v1.ResourceEphemeralStorage: resource.MustParse("200Mi")}, newResourceList("", "", "")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    				podMaker := makePodWithMemoryStats
    				summaryStatsMaker := makeMemoryStats
    				podsToMake := []podToMake{
    					{name: "below-requests", requests: newResourceList("", "1Gi", ""), limits: newResourceList("", "1Gi", ""), memoryWorkingSet: "900Mi"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      }
    }
    
    // -----
    
    // Tests inputs are correctly split and fed into TPU computation for tiled input
    // sharding.
    
    // The following OpSharding is used for TPU computation inputs in below test:
    // Proto debug string:
    //  input 0
    //   type: OTHER
    //   tile_assignment_dimensions: 1
    //   tile_assignment_dimensions: 2
    //   tile_assignment_devices: 0
    //   tile_assignment_devices: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

          this.key = key;
          this.hash = hash;
          this.next = next;
        }
    
        @Override
        public K getKey() {
          return this.key;
        }
    
        // The code below is exactly the same for each entry type.
    
        final int hash;
        @CheckForNull final ReferenceEntry<K, V> next;
        volatile ValueReference<K, V> valueReference = unset();
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

          this.key = key;
          this.hash = hash;
          this.next = next;
        }
    
        @Override
        public K getKey() {
          return this.key;
        }
    
        // The code below is exactly the same for each entry type.
    
        final int hash;
        @CheckForNull final ReferenceEntry<K, V> next;
        volatile ValueReference<K, V> valueReference = unset();
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    //    any work to do.
    //
    // The current approach:
    //
    // This approach applies to three primary sources of potential work: readying a
    // goroutine, new/modified-earlier timers, and idle-priority GC. See below for
    // additional details.
    //
    // We unpark an additional thread when we submit work if (this is wakep()):
    // 1. There is an idle P, and
    // 2. There are no "spinning" worker threads.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	q := NewTestQueue(ctx, newDefaultQueueSort(), WithClock(c), WithQueueingHintMapPerProfile(m))
    	// To simulate the pod is failed in scheduling in the real world, Pop() the pod from activeQ before AddUnschedulableIfNotPresent()s below.
    	q.activeQ.Add(q.newQueuedPodInfo(unschedulablePodInfo.Pod))
    	if p, err := q.Pop(logger); err != nil || p.Pod != unschedulablePodInfo.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	go doc [<pkg>.]<sym>[.<methodOrField>]
    //	go doc [<pkg>.][<sym>.]<methodOrField>
    //
    // The first item in this list matched by the argument is the one whose documentation
    // is printed. (See the examples below.) However, if the argument starts with a capital
    // letter it is assumed to identify a symbol or method in the current directory.
    //
    // For packages, the order of scanning is determined lexically in breadth-first order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // Reference: https://arxiv.org/pdf/1603.07285.pdf
        // Section 4.6 > Relationship 13 states an associated transposed
        // convolution should have `s = 1`.
        // For `VALID` padding, the condition below will always hold true.
        // For `SAME` padding, express via regular convolution.
        return output_height > input_height && output_width > input_width &&
               stride_height == 1 && stride_width == 1;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	Stale       bool   `json:",omitempty"` // would 'go install' do anything for this package?
    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top