Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 671 for dumpbv (0.29 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/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)
  4. pkg/test/kube/dump.go

    			scopes.Framework.Warnf("Error getting pods list for cluster %s via kubectl: %v", c.Name(), err)
    			return
    		}
    		if len(pods.Items) == 0 {
    			continue
    		}
    		for _, dump := range dumpers {
    			c, dump := c, dump
    			wg.Add(1)
    			go func() {
    				dump(ctx, c, workDir, namespace, pods.Items...)
    				wg.Done()
    			}()
    		}
    	}
    	wg.Wait()
    }
    
    const coredumpDir = "/var/lib/istio"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K 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/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)
  8. pkg/scheduler/internal/cache/debugger/dumper.go

    func (d *CacheDumper) dumpNodes(logger klog.Logger) {
    	dump := d.cache.Dump()
    	nodeInfos := make([]string, 0, len(dump.Nodes))
    	for name, nodeInfo := range dump.Nodes {
    		nodeInfos = append(nodeInfos, d.printNodeInfo(name, nodeInfo))
    	}
    	// Extra blank line added between node entries for readability.
    	logger.Info("Dump of cached NodeInfo", "nodes", strings.Join(nodeInfos, "\n\n"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. 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)
  10. cluster/log-dump/log-dump.sh

        wait
      fi
    }
    
    # Dumps logs from nodes in the cluster. Linux nodes to dump logs from can be
    # specified via $1 or $use_custom_instance_list. If not specified then the nodes
    # to dump logs for will be detected using detect-node-names(); if Windows nodes
    # are present then they will be detected and their logs will be dumped too.
    function dump_nodes() {
      local node_names=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top