Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for expected_ (0.18 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			if q.podBackoffQ.Len() == 0 && test.expectedQ == backoffQ {
    				t.Fatalf("expected pod to be queued to backoffQ, but it was not")
    			}
    
    			if q.activeQ.Len() == 0 && test.expectedQ == activeQ {
    				t.Fatalf("expected pod to be queued to activeQ, but it was not")
    			}
    
    			if q.unschedulablePods.get(test.podInfo.Pod) == nil && test.expectedQ == unschedulablePods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

          // expected-remark@above {{ID: 8}}
          // expected-remark@above {{Predecessors: {5,6}}}
          // expected-remark@above {{Successors: {9}}}
          tf_executor.yield
          // expected-remark@above {{ID: 9}}
          // expected-remark@above {{Predecessors: {7,8}}}
        }
        tf_executor.fetch %island : !tf_executor.control
        // expected-remark@above {{ID: 11}}
        // expected-remark@above {{Predecessors: {10}}}
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{op expected 2 regions}}
      %0 = "tf.IfRegion"(%arg0) { is_stateless = false} : (tensor<i1>) -> tensor<2xf32>
    
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    func.func @testInvalidIfRegionOp3Regions(%arg0: tensor<i1>, %arg1: tensor<2xf32>) -> tensor<2xf32> {
      // expected-error @+1 {{op expected 2 regions}}
      %0 = "tf.IfRegion"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    			t.Fatal(err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintSecret(t *testing.T) {
    	tests := []struct {
    		secret   api.Secret
    		expected []metav1.TableRow
    	}{
    		// Basic namespace with type, data, and age.
    		{
    			secret: api.Secret{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    	if !found {
    		t.Error("Expected inodes free nodefs observation")
    	}
    	if expected := int64(nodeFsInodesFree); nodeFsInodesQuantity.available.Value() != expected {
    		t.Errorf("Expected %v, actual: %v", expected, nodeFsInodesQuantity.available.Value())
    	}
    	if expected := int64(nodeFsInodes); nodeFsInodesQuantity.capacity.Value() != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        try {
          getDone(future);
          fail();
        } catch (ExecutionException expected) {
          assertSame(exception, expected.getCause());
        }
    
        try {
          getDoneFromTimeoutOverload(future);
          fail();
        } catch (ExecutionException expected) {
          assertSame(exception, expected.getCause());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        try {
          getDone(future);
          fail();
        } catch (ExecutionException expected) {
          assertSame(exception, expected.getCause());
        }
    
        try {
          getDoneFromTimeoutOverload(future);
          fail();
        } catch (ExecutionException expected) {
          assertSame(exception, expected.getCause());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    	if len(newMap) != len(expected) {
    		t.Errorf("[%d] expected %d results, got %d: %v", tci, len(expected), len(newMap), newMap)
    	}
    	for x := range expected {
    		if len(newMap[x]) != len(expected[x]) {
    			t.Errorf("[%d] expected %d endpoints for %v, got %d", tci, len(expected[x]), x, len(newMap[x]))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+2 {{failed to infer returned types}}
      // expected-error @+1 {{input should be of rank larger than 0}}
      %0:3 = "tfl.unpack"(%arg0) {axis = 0 : i32, num = 3 : i32} : (tensor<i32>) -> (tensor<2xi32>, tensor<2xi32>, tensor<2xi32>)
      func.return %0#0 : tensor<2xi32>
    }
    
    // -----
    
    func.func @unpack(%arg0: tensor<2x3xi32>) -> tensor<2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    				}
    				expected := test.expected.DeepCopy()
    				actual := kl.generateAPIPodStatus(test.pod, test.currentStatus, test.isPodTerminal)
    				if enablePodReadyToStartContainersCondition {
    					expected.Conditions = append([]v1.PodCondition{test.expectedPodReadyToStartContainersCondition}, expected.Conditions...)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top