Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 671 for dumpbv (0.2 sec)

  1. tensorflow/compiler/aot/flags.cc

           "it is expected to be in the proto binary format."},
          {"dump_fetch_nodes", &flags->dump_fetch_nodes,
           "If set, only flags related to fetches are processed, and the resulting "
           "fetch nodes will be dumped to stdout in a comma-separated list.  "
           "Typically used to format arguments for other tools, e.g. "
           "freeze_graph."},
          // Flags controlling the XLA ahead-of-time compilation, that correspond to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

        List<String> listObjectFiles() {
            def dumpbin = findExe("lib.exe")
            def process = [dumpbin.absolutePath, '/LIST', binaryFile.absolutePath].execute(["PATH=$vcPath"], null)
            return process.inputStream.readLines().drop(3).collect { new File(it).name }
        }
    
        List<String> listLinkedLibraries() {
            def dumpbin = findExe("dumpbin.exe")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    )
    
    const (
    	queryIncludeRequestDetails = "includeRequestDetails"
    )
    
    func (cfgCtlr *configController) Install(c *mux.PathRecorderMux) {
    	// TODO(yue9944882): handle "Accept" header properly
    	// debugging dumps a CSV content for three levels of granularity
    	// 1. row per priority-level
    	c.UnlistedHandleFunc("/debug/api_priority_and_fairness/dump_priority_levels", cfgCtlr.dumpPriorityLevels)
    	// 2. row per queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

      void runOnOperation() override {
        mlir::MLIRContext* ctx = &getContext();
        mlir::ModuleOp module_op = getOperation();
        mlir::PassManager pm(ctx);
    
        pm.addPass(CreateNoOpPass());
    
        EnableIrPrinting(pm, "dump2");
    
        if (failed(pm.run(module_op))) {
          signalPassFailure();
        }
      }
    };
    
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>> CreateParentPass() {
      return std::make_unique<ParentPass>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/covdata/tool_test.go

    				found = true
    				break
    			}
    		}
    		if !found {
    			t.Errorf("dump output regexp match failed for %q", testpoint.tag)
    			bad = true
    		}
    	}
    	if bad {
    		dumplines(lines)
    	}
    }
    
    func testPercent(t *testing.T, s state) {
    	// Run the dumper on the two dirs we generated.
    	dargs := []string{"-pkg=" + mainPkgPath, "-i=" + s.outdirs[0] + "," + s.outdirs[1]}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. pkg/test/framework/testcontext.go

    		// make sure we dump suite-level/top-level resources, but don't dump sibling tests or their children
    		for _, scope := range c.topLevelScopes() {
    			scope.dump(c, false)
    		}
    		c.scope.dump(c, true)
    		scopes.Framework.Debugf("Completed dumping testContext: %q", c.id)
    	} else {
    		scopes.Framework.Debugf("Begin skipping dump of testContext: %q. Maximum number of test dumps exceeded", c.id)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/installer.go

    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    var _ resource.Dumper = &installer{}
    
    type installArgs struct {
    	ComponentName string
    	Revision      string
    	Files         []string
    	Set           []string
    }
    
    func (args *installArgs) AppendSet(key, value string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/runtime/print.go

    	// print* functions, for use in postmortem analysis of core dumps.
    	printBacklog      [512]byte
    	printBacklogIndex int
    )
    
    // recordForPanic maintains a circular buffer of messages written by the
    // runtime leading up to a process crash, allowing the messages to be
    // extracted from a core dump.
    //
    // The text written during a process crash (following "panic" or "fatal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

        rewriter.setInsertionPointAfterValue(result);
    
        // In Whole model, we first need to set file_name as
        // unquantized_tensor_data.pb as it is used by unquantized dump model.
        // After saving unquantized dump model, the file name will be changed to
        // quantized_tensor_data.pb.
        // Since this process doesn't happen for per layer, we need to set file_name
        // as quantized_tensor_data.pb here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/enable-core-dump.yaml

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 460 bytes
    - Viewed (0)
Back to top