Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for dumpgs (0.24 sec)

  1. src/runtime/heapdump.go

    	dumpparams()
    	dumpitabs()
    	dumpobjs()
    	dumpgs()
    	dumpms()
    	dumproots()
    	dumpmemstats(m)
    	dumpmemprof()
    	dumpint(tagEOF)
    	flush()
    }
    
    func writeheapdump_m(fd uintptr, m *MemStats) {
    	assertWorldStopped()
    
    	gp := getg()
    	casGToWaiting(gp.m.curg, _Grunning, waitReasonDumpingHeap)
    
    	// Set dump file.
    	dumpfd = fd
    
    	// Call dump routine.
    	mdump(m)
    
    	// Reset dump file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/dumper.go

    			err = e.(writeError).err // re-panics if it's not a writeError
    		}
    	}()
    
    	if n == nil {
    		p.printf("nil\n")
    		return
    	}
    	p.dump(reflect.ValueOf(n), n)
    	p.printf("\n")
    
    	return
    }
    
    type dumper struct {
    	output io.Writer
    	ptrmap map[Node]int // node -> dump line number
    	indent int          // current indentation level
    	last   byte         // last byte processed by Write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. pkg/test/kube/dump.go

    	_ = errG.Wait()
    }
    
    // DumpPods runs each dumper with the selected pods in the given namespace.
    // If selectors is empty, all pods in the namespace will be dumpped.
    // If no dumpers are provided, their resource state, events, container logs and Envoy information will be dumped.
    func DumpPods(ctx resource.Context, workDir, namespace string, selectors []string, dumpers ...PodDumper) {
    	if len(dumpers) == 0 {
    		dumpers = []PodDumper{
    			DumpPodState,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/dumper.go

    // limitations under the License.
    
    package resource
    
    // Dumper is an interface that is implemented by all components that can dump their state. In CI, it is
    // useful to get as much context as possible when a test fails. Dumper allows dumping of state from a test.
    type Dumper interface {
    	Dump(ctx Context)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 14 21:19:42 UTC 2020
    - 861 bytes
    - Viewed (0)
  5. src/net/http/httputil/dump.go

    		return nil, err
    	}
    	dump := buf.Bytes()
    
    	// If we used a dummy body above, remove it now.
    	// TODO: if the req.ContentLength is large, we allocate memory
    	// unnecessarily just to slice it off here. But this is just
    	// a debug function, so this is acceptable for now. We could
    	// discard the body earlier if this matters.
    	if dummyBody {
    		if i := bytes.Index(dump, []byte("\r\n\r\n")); i >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata_test.go

    	case []*LinkDef:
    		for _, def := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, blk)
    		}
    
    	case *Heading:
    		fmt.Fprintf(out, "Heading")
    		dumpTo(out, indent+1, x.Text)
    
    	case *List:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. operator/cmd/mesh/profile-dump.go

    }
    
    func profileDumpCmd(pdArgs *profileDumpArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "dump [<profile>]",
    		Short: "Dumps an Istio configuration profile",
    		Long:  "The dump subcommand dumps the values in an Istio configuration profile.",
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) > 1 {
    				return fmt.Errorf("too many positional arguments")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/operator-dump.go

    		"Output format: one of json|yaml")
    }
    
    func operatorDumpCmd(rootArgs *RootArgs, odArgs *operatorDumpArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "dump",
    		Short: "Dumps the Istio operator controller manifest.",
    		Long:  "The dump subcommand dumps the Istio operator controller manifest.",
    		Args:  cobra.ExactArgs(0),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/debug/debug_options.proto

    // Additional parameters that control the debug behavior of the Converter.
    //
    // Next ID: 9
    message DebugOptions {
      // If not empty, dumps MLIR to the specified directory. The initial state of
      // the MLIR after import will be dumped at the beginning of each pass manager
      // run. Additionally, MLIR will be dumped before and after each pass
      // depending on pass names and functions matched using the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // in the sponge "Output Files" by looking up the environment to infer
    // the directory path.
    // If the provided path is the string kCrashReproducerStdErr, the data is
    // dumped into the stderr.
    // If the provided path is the string kCrashReproducerCrashAnalysis, the data
    // is dumped to the crash analysis system. Note, environment var
    // `MLIR_CRASH_REPRODUCER_DIRECTORY` can be used to override
    // kCrashReproducerCrashAnalysis settings.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top