Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for verifyMod (0.1 sec)

  1. tests/integration/operator/verify_test.go

    				"--set", "values.global.variant=" + s.Image.Variant,
    				"--manifests=" + ManifestPath,
    				"-y",
    			}
    			istioCtl.InvokeOrFail(t, installCmd)
    
    			verifyCmd := []string{
    				"verify-install",
    			}
    			out, _ := istioCtl.InvokeOrFail(t, verifyCmd)
    			if !strings.Contains(out, "verified successfully") {
    				t.Fatalf("verify-install failed: %v", out)
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		expected_op_map := tc.expected_attaches
    		plugin_map := testPlugin.GetAttachedVolumes()
    		verify_op := "attach"
    		volFound, nodeFound := false, false
    		for i := 0; i <= 1; i++ { // verify attaches and detaches
    			if i == 1 {
    				expected_op_map = tc.expected_detaches
    				plugin_map = testPlugin.GetDetachedVolumes()
    				verify_op = "detach"
    			}
    			// Verify every (node, volume) in the expected_op_map is in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			UID:       types.UID(podUID),
    			Name:      podName,
    			Namespace: podNamespace,
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    }
    
    // verifyPods returns true if the two pod slices are equal.
    func verifyPods(a, b []*kubecontainer.Pod) bool {
    	if len(a) != len(b) {
    		return false
    	}
    
    	// Sort the containers within a pod.
    	for i := range a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                     "enabled"),
                 std::nullopt;
        }
    
        auto builtin_code = GetBuiltinOpCode(inst);
        if (!builtin_code) {
          if (auto verify_op = dyn_cast<mlir::TFL::NumericVerifyOp>(inst)) {
            return BuildNumericVerifyOperator(verify_op, operands, results);
          }
          if (auto custom_op = dyn_cast<mlir::TFL::CustomOp>(inst)) {
            return BuildCustomOperator(inst, custom_op, operands, results);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top