Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for dispatchTo (0.28 sec)

  1. RELEASE.md

        register a dataset with the tf.data service, and another process to consume
        data from the dataset.
    *   Adds support for dispatcher fault tolerance. To enable fault tolerance,
        configure a `work_dir` when running your dispatcher server and set
        `dispatcher_fault_tolerance=True`. The dispatcher will store its state to
        `work_dir`, so that on restart it can continue from its previous state after
        restart.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/http/server.go

    // TODO(jba): replace with maps.Keys when it is defined.
    func mapKeys[K comparable, V any](m map[K]V) []K {
    	var ks []K
    	for k := range m {
    		ks = append(ks, k)
    	}
    	return ks
    }
    
    // ServeHTTP dispatches the request to the handler whose
    // pattern most closely matches the request URL.
    func (mux *ServeMux) ServeHTTP(w ResponseWriter, r *Request) {
    	if r.RequestURI == "*" {
    		if r.ProtoAtLeast(1, 1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// avoiding empty list error with min and max by appending an acceptable default minimum value
    				"([0] + self.emptyInts).min() == 0",
    
    				// handle CEL's dynamic dispatch appropriately (special cases to handle an empty list)
    				"dyn([]).sum() == 0",
    				"dyn([1, 2]).sum() == 3",
    				"dyn([1.0, 2.0]).sum() == 3.0",
    
    				"[].sum() == 0", // An empty list returns an 0 int
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. fastapi/applications.py

                return response
            ```
            """
    
            def decorator(func: DecoratedCallable) -> DecoratedCallable:
                self.add_middleware(BaseHTTPMiddleware, dispatch=func)
                return func
    
            return decorator
    
        def exception_handler(
            self,
            exc_class_or_status_code: Annotated[
                Union[int, Type[Exception]],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top