Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for verifyMod (0.24 sec)

  1. src/cmd/go/internal/modcmd/verify.go

    		mod := mod // use a copy to avoid data races
    		go func() {
    			errsc <- verifyMod(ctx, mod)
    			<-sem
    		}()
    	}
    
    	ok := true
    	for _, errsc := range errsChans {
    		errs := <-errsc
    		for _, err := range errs {
    			base.Errorf("%s", err)
    			ok = false
    		}
    	}
    	if ok {
    		fmt.Printf("all modules verified\n")
    	}
    }
    
    func verifyMod(ctx context.Context, mod module.Version) []error {
    	if gover.IsToolchain(mod.Path) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. pkg/volume/downwardapi/downwardapi_test.go

    			files: map[string]string{"name_file_name": "metadata.name"},
    			steps: []testStep{
    				verifyMode{stepName{"name_file_name"}, 0644},
    			},
    		},
    		{
    			name:  "test_item_mode",
    			files: map[string]string{"name_file_name": "metadata.name"},
    			modes: map[string]int32{"name_file_name": 0400},
    			steps: []testStep{
    				verifyMode{stepName{"name_file_name"}, 0400},
    			},
    		},
    	}
    	for _, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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