Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 440 for dumpgs (0.2 sec)

  1. tests/test_dependency_contextmanager.py

        return state
    
    
    @app.middleware("http")
    async def middleware(request, call_next):
        response: StreamingResponse = await call_next(request)
        response.headers["x-state"] = json.dumps(state.copy())
        return response
    
    
    client = TestClient(app)
    
    
    def test_async_state():
        assert state["/async"] == "asyncgen not started"
        response = client.get("/async")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/runtime/signal_amd64.go

    //go:build amd64 && (darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris)
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("rax    ", hex(c.rax()), "\n")
    	print("rbx    ", hex(c.rbx()), "\n")
    	print("rcx    ", hex(c.rcx()), "\n")
    	print("rdx    ", hex(c.rdx()), "\n")
    	print("rdi    ", hex(c.rdi()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

                           bool *changed);
    
      // Updates the port quantization specifications of all the quant region ops
      // with the propagation results.
      LogicalResult Finalize();
    
      // Dumps the states stores in the state manager.
      void DumpStates(quantfork::QuantizeRegionOp current_op = {});
    
      // Update the quantization parameter for certain result of the op. By this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. istioctl/pkg/util/configdump/cluster.go

    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    // GetDynamicClusterDump retrieves a cluster dump with just dynamic active clusters in it
    func (w *Wrapper) GetDynamicClusterDump(stripVersions bool) (*admin.ClustersConfigDump, error) {
    	clusterDump, err := w.GetClusterConfigDump()
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/defs_windows_amd64.go

    func (c *context) set_sp(x uintptr) { c.rsp = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.rbp = uint64(x) }
    
    func prepareContextForSigResume(c *context) {
    	c.r8 = c.rsp
    	c.r9 = c.rip
    }
    
    func dumpregs(r *context) {
    	print("rax     ", hex(r.rax), "\n")
    	print("rbx     ", hex(r.rbx), "\n")
    	print("rcx     ", hex(r.rcx), "\n")
    	print("rdx     ", hex(r.rdx), "\n")
    	print("rdi     ", hex(r.rdi), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/runtime/signal_arm.go

    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || linux || netbsd || openbsd
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("trap    ", hex(c.trap()), "\n")
    	print("error   ", hex(c.error()), "\n")
    	print("oldmask ", hex(c.oldmask()), "\n")
    	print("r0      ", hex(c.r0()), "\n")
    	print("r1      ", hex(c.r1()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/ztunnel/configdump/policies.go

    	if wf.Namespace != "" {
    		if !strings.EqualFold(pol.Namespace, wf.Namespace) {
    			return false
    		}
    	}
    
    	return true
    }
    
    // PrintServiceSummary prints a summary of the relevant services in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintPolicySummary(filter PolicyFilter) error {
    	w := c.tabwriter()
    	zDump := c.ztunnelDump
    
    	pols := slices.Filter(zDump.Policies, filter.Verify)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. releasenotes/notes/34325.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 14 12:56:32 UTC 2021
    - 171 bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			expectedString:   `config dump has no configuration type`,
    			wantException:    true,
    		},
    		{ // supplying valid pod name retrieves Envoy config (fails because we don't check in Envoy config unit tests)
    			execClientConfig: loggingConfig,
    			args:             strings.Split("bootstrap httpbin-794b576b6c-qx6pf", " "),
    			expectedString:   `config dump has no configuration type`,
    			wantException:    true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    // unless a given priority level is actually overloaded.
    //
    // Additionally, we rate-limit the increases of retryAfter to wait at least
    // `retryAfter' seconds after the previous increase to avoid multiple bumps
    // on a single spike.
    //
    // We're working with the interval [unixTime-retryAfter, unixTime).
    func (s *droppedRequestsStats) updateRetryAfterIfNeededLocked(unixTime int64) {
    	retryAfter := s.retryAfter.Load()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top