Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 554 for mdump (0.04 sec)

  1. pkg/controller/garbagecollector/dump_test.go

    	if len(expectedNodes) != len(actualNodes) {
    		t.Fatal(dump.Pretty(actualNodes))
    	}
    	for i := range expectedNodes {
    		currExpected := expectedNodes[i]
    		currActual := actualNodes[i]
    		if currExpected.uid != currActual.uid {
    			t.Errorf("expected %v, got %v", dump.Pretty(currExpected), dump.Pretty(currActual))
    		}
    	}
    	if len(expectedEdges) != len(actualEdges) {
    		t.Fatal(dump.Pretty(actualEdges))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops_mlrt.mlir

    // RUN: tf-tfrt-opt -split-input-file -tfrt-lower-tf-savedmodel="hoist-invariant-ops=true fuse-get-resource-ops=false" %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    module attributes {tf_saved_model.semantics} {
    
    // Test hoisting hash table op.
    
    // CHECK-LABEL: func @_tfrt_resource_init
    // CHECK: [[handle:%.*]] = "tf.HashTableV2"()
    // CHECK-SAME: shared_name = "x"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/dump_graph_test.cc

      Status Sync() override { return absl::OkStatus(); }
    
      Status Tell(int64_t* position) override {
        return errors::Unimplemented("Stream not seekable");
      }
    
     private:
      string& str_;
    };
    
    TEST(Dump, TextualIrToFileSuccess) {
      Graph graph(OpRegistry::Global());
      Node* node;
      TF_CHECK_OK(NodeBuilder("A", "NoOp").Finalize(&graph, &node));
    
      setenv("TF_DUMP_GRAPH_PREFIX", testing::TmpDir().c_str(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator_test.go

    )
    
    // TODO: rewrite this with running the actual top level command.
    func TestOperatorDump(t *testing.T) {
    	goldenFilepath := filepath.Join(env.IstioSrc, "operator/cmd/mesh/testdata/operator/output/operator-dump.yaml")
    
    	odArgs := &operatorDumpArgs{
    		common: operatorCommonArgs{
    			hub:               "foo.io/istio",
    			tag:               "1.2.3",
    			imagePullSecrets:  []string{"imagePullSecret1,imagePullSecret2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/README.md

    [comment.Printer](https://pkg.go.dev/go/doc/comment/#Printer):
    “gofmt” for Printer.Comment (Go comment format, as used by gofmt),
    “html” for Printer.HTML, “markdown” for Printer.Markdown, and “text” for Printer.Text.
    The format can also be “dump” for a textual dump of the raw data structures.
    
    The text before the `-- input --` line, if present, is JSON to be unmarshaled
    to initialize a comment.Printer. For example, this test case sets the Printer's
    TextWidth field to 20:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/dumper_test.go

    )
    
    func TestDump(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping test in short mode")
    	}
    
    	ast, _ := ParseFile(*src_, func(err error) { t.Error(err) }, nil, CheckBranches)
    
    	if ast != nil {
    		Fdump(testOut(), ast)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:31 UTC 2022
    - 424 bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/proxyconfig.go

    			case jsonOutput, yamlOutput:
    				var dump []byte
    				var err error
    				if len(args) == 1 {
    					podName, podNamespace, err := getPodName(ctx, args[0])
    					if err != nil {
    						return err
    					}
    					dump, err = extractConfigDump(kubeClient, podName, podNamespace, true)
    					if err != nil {
    						return err
    					}
    				} else {
    					dump, err = readFile(configDumpFile)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  8. istioctl/pkg/util/configdump/route.go

    	}
    	return nil, nil
    }
    
    // GetDynamicRouteDump retrieves a route dump with just dynamic active routes in it
    func (w *Wrapper) GetDynamicRouteDump(stripVersions bool) (*admin.RoutesConfigDump, error) {
    	routeDump, err := w.GetRouteConfigDump()
    	if err != nil {
    		return nil, err
    	}
    	drc := routeDump.GetDynamicRouteConfigs()
    	// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    	for i := range drc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      return filepath;
    }
    
    std::string GetDumpDirFromEnvVar() {
      const char* prefix_env = getenv("TF_DUMP_GRAPH_PREFIX");
      if (!prefix_env) {
        LOG(WARNING)
            << "Failed to dump MLIR module because dump location is not "
            << "specified through TF_DUMP_GRAPH_PREFIX environment variable.";
        return "";
      }
    
      std::string result = prefix_env;
    
      if (absl::EqualsIgnoreCase(result, "sponge") &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc

          m, "Operation")
          .def("getRegion", &mlir::Operation::getRegion,
               py::return_value_policy::reference)
          .def("getResult", &mlir::Operation::getResult)
          .def("dump", &mlir::Operation::dump)
          .def("getNumResults", &mlir::Operation::getNumResults);
    
      py::class_<mlir::OperationState>(m, "OperationState")
          .def(py::init([](mlir::Location loc, std::string name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
Back to top