Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for mdump (0.31 sec)

  1. src/runtime/heapdump.go

    }
    
    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.
    	dumpfd = 0
    	if tmpbuf != nil {
    		sysFree(unsafe.Pointer(&tmpbuf[0]), uintptr(len(tmpbuf)), &memstats.other_sys)
    		tmpbuf = nil
    	}
    
    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. 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)
  3. src/cmd/covdata/dump.go

    	if cmd == textfmtMode || cmd == percentMode {
    		textfmtoutflag = flag.String("o", "", "Output text format to file")
    	}
    	if cmd == debugDumpMode {
    		liveflag = flag.Bool("live", false, "Select only live (executed) functions for dump output.")
    	}
    	d := &dstate{
    		cmd: cmd,
    		cm:  &cmerge.Merger{},
    	}
    	// For these modes (percent, pkglist, func, etc), use a relaxed
    	// policy when it comes to counter mode clashes. For a percent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. cluster/log-dump/log-dump.sh

        files+=("${extra[@]}")
        if [[ -n "${use_custom_instance_list}" ]]; then
          if [[ -n "${LOG_DUMP_SAVE_LOGS:-}" ]]; then
    	local dump=()
            IFS=' ' read -r -a dump <<< "${LOG_DUMP_SAVE_LOGS:-}"
            files+=("${dump[@]}")
          fi
        else
          local providerlogs=()
          case "${KUBERNETES_PROVIDER}" in
            gce|gke)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

    John Howard <******@****.***> 1713238116 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/dump/dump_test.go

    		{tcs, "(dump.customString) (len=4) \"test\"\n"},
    		{&tcs, "(*dump.customString)((len=4) \"test\")\n"},
    		{tpcs, "(dump.pCustomString) (len=5) \"&test\"\n"},
    		{&tpcs, "(*dump.pCustomString)((len=5) \"&test\")\n"},
    		{tce, "(dump.customError) 0\n"},
    		{&tce, "(*dump.customError)(0)\n"},
    		{tpce, "(dump.pCustomError) 0\n"},
    		{&tpce, "(*dump.pCustomError)(0)\n"},
    		{
    			struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse.go

    	return buffer.String()
    }
    
    func (dump *IPTablesDump) GetTable(table iptables.Table) (*Table, error) {
    	for i := range dump.Tables {
    		if dump.Tables[i].Name == table {
    			return &dump.Tables[i], nil
    		}
    	}
    	return nil, fmt.Errorf("no such table %q", table)
    }
    
    func (dump *IPTablesDump) GetChain(table iptables.Table, chain iptables.Chain) (*Chain, error) {
    	t, err := dump.GetTable(table)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse_test.go

    		if err != nil {
    			t.Errorf("Parse(%#q): %v", tt.Regexp, err)
    			continue
    		}
    		if tt.Dump == "" {
    			// It parsed. That's all we care about.
    			continue
    		}
    		d := dump(re)
    		if d != tt.Dump {
    			t.Errorf("Parse(%#q).Dump() = %#q want %#q", tt.Regexp, d, tt.Dump)
    			continue
    		}
    
    		s := re.String()
    		if s != tt.Regexp {
    			// If ToString didn't return the original regexp,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

        on, off, debug, mem, time, test, stats, dump, seed
    
    - <value> defaults to 1
    
    - <function_name> is required for the "dump" flag, and specifies the
      name of function to dump after <phase>
    
    Phase "all" supports flags "time", "mem", and "dump".
    Phase "intrinsics" supports flags "on", "off", and "debug".
    Phase "genssa" (assembly generation) supports the flag "dump".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    //
    //	$ rm -f dump.txt
    //	$ go build -o foo.a -gcflags=-d=dumpinlfuncprops=dump.txt foo.go
    //	$ rm -f dump.txt foo.a
    //	$ go build -o foo.a -gcflags=-d=dumpinlfuncprops=dump.txt foo.go
    //	$ ls foo.a dump.txt > /dev/null
    //	ls : cannot access 'dump.txt': No such file or directory
    //	$
    //
    // For this reason, pick a unique filename for the dump, so as to
    // defeat the caching.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top