Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for debugLink (0.48 sec)

  1. docs/en/docs/release-notes.md

    * Fix using recursive models in `response_model`. PR [#1164](https://github.com/tiangolo/fastapi/pull/1164) by [@voegtlel](https://github.com/voegtlel).
    * Add docs for [Pycharm Debugging](https://fastapi.tiangolo.com/tutorial/debugging/). PR [#1096](https://github.com/tiangolo/fastapi/pull/1096) by [@youngquan](https://github.com/youngquan).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	SecurityContext *SecurityContext
    
    	// Variables for interactive containers, these have very specialized use-cases (e.g. debugging)
    	// and shouldn't be used for general purpose containers.
    	// +optional
    	Stdin bool
    	// +optional
    	StdinOnce bool
    	// +optional
    	TTY bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

      certificate.' ([#119859](https://github.com/kubernetes/kubernetes/pull/119859), [@SataQiu](https://github.com/SataQiu))
    - Added `CAP_NET_RAW` to netadmin debug profile and removed privileges when debugging nodes. ([#118647](https://github.com/kubernetes/kubernetes/pull/118647), [@mochizuki875](https://github.com/mochizuki875))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    // iptables rules
    type iptablesTracer struct {
    	ipt      *iptablestest.FakeIPTables
    	localIPs sets.Set[string]
    	t        *testing.T
    
    	// matches accumulates the list of rules that were matched, for debugging purposes.
    	matches []string
    
    	// outputs accumulates the list of matched terminal rule targets (endpoint
    	// IP:ports, or a special target like "REJECT") and is eventually used to generate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	SecurityContext *SecurityContext `json:"securityContext,omitempty" protobuf:"bytes,15,opt,name=securityContext"`
    
    	// Variables for interactive containers, these have very specialized use-cases (e.g. debugging)
    	// and shouldn't be used for general purpose containers.
    
    	// Whether this container should allocate a buffer for stdin in the container runtime. If this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_EnvVarSource
    }
    
    var map_EphemeralContainer = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	for _, n := range fn.Dcl {
    		if n.Class == ir.PPARAM {
    			if s.canSSA(n) {
    				v := s.newValue0A(ssa.OpArg, n.Type(), n)
    				s.vars[n] = v
    				s.addNamedValue(n, v) // This helps with debugging information, not needed for compilation itself.
    			} else { // address was taken AND/OR too large for SSA
    				paramAssignment := ssa.ParamAssignmentForArgName(s.f, n)
    				if len(paramAssignment.Registers) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional SecretKeySelector secretKeyRef = 4;
    }
    
    // An EphemeralContainer is a temporary container that you may add to an existing Pod for
    // user-initiated activities such as debugging. Ephemeral containers have no resource or
    // scheduling guarantees, and they will not be restarted when they exit or when a Pod is
    // removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Added "general", "baseline", and "restricted" debugging profiles for kubectl debug. ([#114280](https://github.com/kubernetes/kubernetes/pull/114280), [@sding3](https://github.com/sding3)) [SIG CLI]
    - Added "netadmin" debugging profiles for kubectl debug. ([#115712](https://github.com/kubernetes/kubernetes/pull/115712), [@wedaly](https://github.com/wedaly)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    func (http2goAwayFlowError) Error() string { return "connection exceeded flow control window size" }
    
    // connError represents an HTTP/2 ConnectionError error code, along
    // with a string (for debugging) explaining why.
    //
    // Errors of this type are only returned by the frame parser functions
    // and converted into ConnectionError(Code), after stashing away
    // the Reason into the Framer's errDetail field, accessible via
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top