Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for dispatchTo (0.24 sec)

  1. ChangeLog.md

    - [`KT-61735`](https://youtrack.jetbrains.com/issue/KT-61735) [FIR] Assignment to val with flexible type dispatch receiver causes crash
    - [`KT-59942`](https://youtrack.jetbrains.com/issue/KT-59942) K2: Disappeared ANNOTATION_PARAMETER_DEFAULT_VALUE_MUST_BE_CONSTANT
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	SetHostnameAsFQDN *bool
    	// If specified, the pod's scheduling constraints
    	// +optional
    	Affinity *Affinity
    	// If specified, the pod will be dispatched by specified scheduler.
    	// If not specified, the pod will be dispatched by default scheduler.
    	// +optional
    	SchedulerName string
    	// If specified, the pod's tolerations.
    	// +optional
    	Tolerations []Toleration
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"affinity":                      "If specified, the pod's scheduling constraints",
    	"schedulerName":                 "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
    	"tolerations":                   "If specified, the pod's tolerations.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // If specified, the pod's scheduling constraints
      // +optional
      optional Affinity affinity = 18;
    
      // If specified, the pod will be dispatched by specified scheduler.
      // If not specified, the pod will be dispatched by default scheduler.
      // +optional
      optional string schedulerName = 19;
    
      // If specified, the pod's tolerations.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// If specified, the pod's scheduling constraints
    	// +optional
    	Affinity *Affinity `json:"affinity,omitempty" protobuf:"bytes,18,opt,name=affinity"`
    	// If specified, the pod will be dispatched by specified scheduler.
    	// If not specified, the pod will be dispatched by default scheduler.
    	// +optional
    	SchedulerName string `json:"schedulerName,omitempty" protobuf:"bytes,19,opt,name=schedulerName"`
    	// If specified, the pod's tolerations.
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "schedulerName": {
                "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
                "type": "string"
              },
              "schedulingGates": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Two changes to the `/debug/api_priority_and_fairness/dump_priority_levels` endpoint of API Priority and Fairness: added total number of dispatched, timed-out, rejected and cancelled requests; output now sorted by `PriorityLevelName`. ([#112393](https://github.com/kubernetes/kubernetes/pull/112393), [@borgerli](https://github.com/borgerli))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

            * [Using FastAPI with Django](https://www.stavros.io/posts/fastapi-with-django/)  by [Stavros Korokithakis](https://twitter.com/Stavros).
            * [Introducing Dispatch](https://netflixtechblog.com/introducing-dispatch-da4b8a2a8072) by [Netflix](https://netflixtechblog.com/).
        * **Podcasts**:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    type http2clientConnReadLoop struct {
    	_  http2incomparable
    	cc *http2ClientConn
    }
    
    // readLoop runs in its own goroutine and reads and dispatches frames.
    func (cc *http2ClientConn) readLoop() {
    	cc.t.markNewGoroutine()
    	rl := &http2clientConnReadLoop{cc: cc}
    	defer rl.cleanup()
    	cc.readerErr = rl.run()
    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