Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCallee (0.19 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (b.getOperations().size() != 2) return std::nullopt;
        if (auto call_op = dyn_cast<mlir::func::CallOp>(b.front()))
          return subgraph_index_map_.at(call_op.getCallee().str());
        return std::nullopt;
      };
      auto body_subgraph_index = get_call_index(op.getBody().front());
      auto cond_subgraph_index = get_call_index(op.getCond().front());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			ds := newDaemonSet("foo")
    			fakeClient := &fake.Clientset{}
    			getCalled := 0
    			fakeClient.AddReactor("get", "daemonsets", func(action core.Action) (bool, runtime.Object, error) {
    				getCalled += 1
    				if getCalled <= tt.getErrorNum {
    					return true, nil, getError
    				}
    				return true, ds, nil
    			})
    			updateCalled := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top