Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for below (0.12 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. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

      limitations under the License.
    -->
    <html>
    <body>
        <h1>Welcome to your Liberty Application</h1>
        <p>Thanks for generating this project using the app accelerator.  Please see below for some extra information on each of the technologies you chose</p>
        <!-- 
      Copyright (c) 2016 IBM Corp.
     
      Licensed under the Apache License, Version 2.0 (the "License");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @test_undefined_function() -> () {
      // expected-error @below {{'f' attribute refers to an undefined function: undefined_func}}
      "tf.LegacyCall"() {f = @undefined_func} : () -> ()
      func.return
    }
    
    // -----
    
    // Tests that argument count mismatch produces error.
    func.func @test_arg_count_mismatch(%arg0: tensor<i32>) -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          metadata = ""} : (tensor<!tf_type.variant>, tensor<!tf_type.resource>, tensor<i64>, tensor<i64>) -> tensor<*x!tf_type.variant>
        // For this test case the first 12 inputs to the function f below will be
        // from ParallelMapDataset, while the remaining one is a captured input.
        %75 = "tf.MapDataset"(%74, %arg3) {
          device = "/job:localhost/replica:0/task:0/device:CPU:0",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  10. 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)
Back to top