Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Dumps (1.83 sec)

  1. samples/bookinfo/src/productpage/productpage.py

    # The API:
    @app.route('/api/v1/products')
    def productsRoute():
        return json.dumps(getProducts()), 200, {'Content-Type': 'application/json'}
    
    
    @app.route('/api/v1/products/<product_id>')
    def productRoute(product_id):
        headers = getForwardHeaders(request)
        status, details = getProductDetails(product_id, headers)
        return json.dumps(details), status, {'Content-Type': 'application/json'}
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

    constexpr char kSuccess[] = "kSuccess";
    constexpr char kFailure[] = "kFailure";
    
    static inline absl::string_view StringRefToView(llvm::StringRef ref) {
      return {ref.data(), ref.size()};
    }
    
    // Dumps the MLIR module to disk.
    // This require the TF_DUMP_GRAPH_PREFIX to be set to a path that exist (or can
    // be created).
    static void DumpModule(mlir::ModuleOp module, std::string file_prefix) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    				// status received in EDS. With this setting, the DRAINING and UNHEALTHY endpoints are kept - both marked
    				// as UNHEALTHY ('coarse state'), which is what will show in config dumps.
    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    func (f *Func) NumValues() int {
    	return f.vid.num()
    }
    
    // NameABI returns the function name followed by comma and the ABI number.
    // This is intended for use with GOSSAFUNC and HTML dumps, and differs from
    // the linker's "<1>" convention because "<" and ">" require shell quoting
    // and are not legal file names (for use with GOSSADIR) on Windows.
    func (f *Func) NameABI() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    	for i, node := range lv.vars {
    		switch node.Class {
    		case ir.PPARAM:
    			// A return instruction with a p.to is a tail return, which brings
    			// the stack pointer back up (if it ever went down) and then jumps
    			// to a new function entirely. That form of instruction must read
    			// all the parameters for correctness, and similarly it must not
    			// read the out arguments - they won't be set until the new
    			// function runs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top