Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 440 for dumpgs (0.12 sec)

  1. common/scripts/kind_provisioner.sh

        C1_SVC_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl cluster-info dump | sed -n 's/^.*--service-cluster-ip-range=\([^"]*\).*$/\1/p' | head -n 1)
        C2_SVC_CIDR=$(KUBECONFIG="${C2_KUBECONFIG}" kubectl cluster-info dump | sed -n 's/^.*--service-cluster-ip-range=\([^"]*\).*$/\1/p' | head -n 1)
        docker exec "${C1_NODE}" ip route add "${C2_POD_CIDR}" via "${C2_DOCKER_IP}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/runtime/signal_riscv64.go

    // license that can be found in the LICENSE file.
    
    //go:build (linux || freebsd || openbsd) && riscv64
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("ra  ", hex(c.ra()), "\t")
    	print("sp  ", hex(c.sp()), "\n")
    	print("gp  ", hex(c.gp()), "\t")
    	print("tp  ", hex(c.tp()), "\n")
    	print("t0  ", hex(c.t0()), "\t")
    	print("t1  ", hex(c.t1()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/runtime/signal_mipsx.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips || mipsle)
    
    package runtime
    
    import (
    	"internal/abi"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("r0   ", hex(c.r0()), "\t")
    	print("r1   ", hex(c.r1()), "\n")
    	print("r2   ", hex(c.r2()), "\t")
    	print("r3   ", hex(c.r3()), "\n")
    	print("r4   ", hex(c.r4()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    )
    
    const (
    	queryIncludeRequestDetails = "includeRequestDetails"
    )
    
    func (cfgCtlr *configController) Install(c *mux.PathRecorderMux) {
    	// TODO(yue9944882): handle "Accept" header properly
    	// debugging dumps a CSV content for three levels of granularity
    	// 1. row per priority-level
    	c.UnlistedHandleFunc("/debug/api_priority_and_fairness/dump_priority_levels", cfgCtlr.dumpPriorityLevels)
    	// 2. row per queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. cluster/log-dump/README.md

    log dumping mechanism first.
    
    Currently, `log-dump.sh` file is added to every newly released `kubekins-e2e` image.
    In order to leverage that script, add `USE_TEST_INFRA_LOG_DUMPING` environment variable
    to your test job and set its value to `true`.
    
    ## Migration steps
    
    For the time being, only GCE and GKE providers are supported by the log-dump mechanism.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 15 08:58:09 UTC 2020
    - 1009 bytes
    - Viewed (0)
  6. src/runtime/signal_mips64x.go

    // license that can be found in the LICENSE file.
    
    //go:build (linux || openbsd) && (mips64 || mips64le)
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("r0   ", hex(c.r0()), "\t")
    	print("r1   ", hex(c.r1()), "\n")
    	print("r2   ", hex(c.r2()), "\t")
    	print("r3   ", hex(c.r3()), "\n")
    	print("r4   ", hex(c.r4()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  7. src/runtime/signal_linux_s390x.go

    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) {
    	*(*uintptr)(add(unsafe.Pointer(c.info), 2*goarch.PtrSize)) = uintptr(x)
    }
    
    func dumpregs(c *sigctxt) {
    	print("r0   ", hex(c.r0()), "\t")
    	print("r1   ", hex(c.r1()), "\n")
    	print("r2   ", hex(c.r2()), "\t")
    	print("r3   ", hex(c.r3()), "\n")
    	print("r4   ", hex(c.r4()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 20:42:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	if c.configDump == nil {
    		return nil, fmt.Errorf("config writer has not been primed")
    	}
    	dump, err := c.configDump.GetEndpointsConfigDump()
    	if err != nil {
    		return nil, err
    	}
    	if dump == nil {
    		return nil, nil
    	}
    	endpoints := make([]*endpoint.ClusterLoadAssignment, 0, len(dump.DynamicEndpointConfigs))
    	for _, e := range dump.GetDynamicEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/test/framework/suitecontext.go

    	return newConfigFactory(c, c.Clusters().Configs())
    }
    
    // RequestTestDump is called by the test context for a failed test to request a full
    // dump of the system state. Returns true if the dump may proceed, or false if the
    // maximum number of dumps has been exceeded for this suite.
    func (c *suiteContext) RequestTestDump() bool {
    	return c.dumpCount.Inc() < c.settings.MaxDumps
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crd/conversion.go

    // response.
    //
    // NOTE: This function only decodes a subset of the complete k8s
    // ObjectMeta as identified by the fields in model.Meta. This
    // would typically only be a problem if a user dumps an configuration
    // object with kubectl and then re-ingests it.
    func ParseInputs(inputs string) ([]config.Config, []IstioKind, error) {
    	return parseInputsImpl(inputs, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top