Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Dumps (0.18 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. pkg/test/kube/dump.go

    			}
    
    			findDumps := fmt.Sprintf("find %s -name core.*", coredumpDir)
    			stdout, _, err := c.PodExec(pod.Name, pod.Namespace, container.Name, findDumps)
    			if err != nil {
    				scopes.Framework.Warnf("Unable to get core dumps for cluster/pod: %s/%s/%s: %v",
    					c.Name(), pod.Namespace, pod.Name, err)
    				continue
    			}
    			for _, cd := range strings.Split(stdout, "\n") {
    				if strings.TrimSpace(cd) == "" {
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. pkg/envoy/proxy.go

    	} else if cfg.ComponentLogLevel != "" {
    		// Use the old setting if we don't set any component log levels in LogLevel
    		args = append(args, "--component-log-level", cfg.ComponentLogLevel)
    	}
    
    	// Explicitly enable core dumps. This may be desirable more often (by default), but for now we only set it in VM tests.
    	if enableEnvoyCoreDump {
    		args = append(args, "--enable-core-dump")
    	}
    	return &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   args,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cluster/gce/gci/configure-helper.sh

        params+=" --${flag}=${value}"
      fi
      echo "${params}"
    }
    
    function setup-os-params {
      # Reset core_pattern. On GCI, the default core_pattern pipes the core dumps to
      # /sbin/crash_reporter which is more restrictive in saving crash dumps. So for
      # now, set a generic core_pattern that users can work with.
      echo "/core.%e.%p.%t" > /proc/sys/kernel/core_pattern
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	}
    }
    
    // nftablesBaseChains lists our "base chains"; those that are directly connected to the
    // netfilter hooks (e.g., "postrouting", "input", etc.), as opposed to "regular" chains,
    // which are only run when a rule jumps to them. See
    // https://wiki.nftables.org/wiki-nftables/index.php/Configuring_chains.
    //
    // These are set up from setupNFTables() and then not directly referenced by
    // syncProxyRules().
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    func (s *State) CombJump(b, next *ssa.Block, jumps *[2][2]IndexJump) {
    	switch next {
    	case b.Succs[0].Block():
    		s.oneJump(b, &jumps[0][0])
    		s.oneJump(b, &jumps[0][1])
    	case b.Succs[1].Block():
    		s.oneJump(b, &jumps[1][0])
    		s.oneJump(b, &jumps[1][1])
    	default:
    		var q *obj.Prog
    		if b.Likely != ssa.BranchUnlikely {
    			s.oneJump(b, &jumps[1][0])
    			s.oneJump(b, &jumps[1][1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top