Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for dumpgs (0.21 sec)

  1. src/runtime/mprof.go

    		pc := getcallerpc()
    		systemstack(func() {
    			g0 := getg()
    			// Force traceback=1 to override GOTRACEBACK setting,
    			// so that Stack's results are consistent.
    			// GOTRACEBACK is only about crash dumps.
    			g0.m.traceback = 1
    			g0.writebuf = buf[0:0:len(buf)]
    			goroutineheader(gp)
    			traceback(pc, sp, 0, gp)
    			if all {
    				tracebackothers(gp)
    			}
    			g0.m.traceback = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    			return '<'
    		case bad:
    			return '!'
    		}
    		return 0
    	})
    }
    
    // isSystemGoroutine reports whether the goroutine g must be omitted
    // in stack dumps and deadlock detector. This is any goroutine that
    // starts at a runtime.* entry point, except for runtime.main,
    // runtime.handleAsyncEvent (wasm only) and sometimes runtime.runfinq.
    //
    // If fixed is true, any goroutine that can vary between user and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/types2/check.go

    	}
    }
    
    func (check *Checker) recordUntyped() {
    	if !debug && !check.recordTypes() {
    		return // nothing to do
    	}
    
    	for x, info := range check.untyped {
    		if debug && isTyped(info.typ) {
    			check.dump("%v: %s (type %s) is typed", atPos(x), x, info.typ)
    			panic("unreachable")
    		}
    		check.recordTypeAndValue(x, info.mode, info.typ, info.val)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    //		Encoding:
    //			type = TYPE_CONST
    //			offset = ±integer value
    //
    //	*<mem>
    //		Indirect reference through memory reference <mem>, defined above.
    //		Only used on x86 for CALL/JMP *sym(SB), which calls/jumps to a function
    //		pointer stored in the data word sym(SB), not a function named sym(SB).
    //		Encoding: same as above, but type = TYPE_INDIR.
    //
    //	$*$<mem>
    //		No longer used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      if (IsLoggingAgentInstalled) {
        # Note: we should reinstall the agent if $REDO_STEPS is true
        # here, but we don't know how to run the installer without it prompting
        # when logging agent is already installed. We dumped the strings in the
        # installer binary and searched for flags to do this but found nothing. Oh
        # well.
        Log-Output ("Skip: Fluentbit logging agent is already installed")
        return
      }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. cmd/utils.go

    	// Return extension of profile
    	Extension() string
    }
    
    // Global profiler to be used by service go-routine.
    var (
    	globalProfiler   map[string]minioProfiler
    	globalProfilerMu sync.Mutex
    )
    
    // dump the request into a string in JSON format.
    func dumpRequest(r *http.Request) string {
    	header := r.Header.Clone()
    	header.Set("Host", r.Host)
    	// Replace all '%' to '%%' so that printer format parser
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		return n * 16 // Trampolines in PPC64 are 4 instructions.
    	case ctxt.IsRISCV64():
    		return n * 8 // Trampolines in RISCV64 are 2 instructions.
    	}
    	panic("unreachable")
    }
    
    // Detect too-far jumps in function s, and add trampolines if necessary.
    // ARM, PPC64, PPC64LE and RISCV64 support trampoline insertion for internal
    // and external linking. On PPC64 and PPC64LE the text sections might be split
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  9. src/cmd/go/internal/work/buildid.go

    // name argument is the program to run. The language argument is the
    // type of input file as passed to the GCC driver's -x option.
    //
    // For these tools we have no -V=full option to dump the build ID,
    // but we can run the tool with -v -### to reliably get the compiler proper
    // and hash that. That will work in the presence of -toolexec.
    //
    // In order to get reproducible builds for released compilers, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    				//	ADD $(autosize+8), R1, R24
    				//	CMP R23, R24
    				//	BNE end
    				//	ADD $8, R1, R25
    				//	MOVD R25, panic_argp(R22)
    				// end:
    				//	NOP
    				//
    				// The NOP is needed to give the jumps somewhere to land.
    				// It is a liblink NOP, not a ppc64 NOP: it encodes to 0 instruction bytes.
    
    				q = obj.Appendp(q, c.newprog)
    
    				q.As = AMOVD
    				q.From.Type = obj.TYPE_MEM
    				q.From.Reg = REGG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top