Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for onDone (0.35 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    	}, {
    		name:               "update - user changed from None to ClusterIP",
    		oldService:         makeServiceWithClusterIp("None", []string{"None"}),
    		newService:         makeServiceWithClusterIp("10.0.0.10", []string{"None"}),
    		expectedClusterIP:  "10.0.0.10",
    		expectedClusterIPs: []string{"10.0.0.10"},
    	}, {
    		name:               "update - user changed from ClusterIP to None",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string externalIPs = 5;
    
      // Supports "ClientIP" and "None". Used to maintain session affinity.
      // Enable client IP based session affinity.
      // Must be ClientIP or None.
      // Defaults to None.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		}
    	case core.ServiceTypeNodePort:
    		if isHeadlessService(service) {
    			allErrs = append(allErrs, field.Invalid(specPath.Child("clusterIPs").Index(0), service.Spec.ClusterIPs[0], "may not be set to 'None' for NodePort services"))
    		}
    	case core.ServiceTypeExternalName:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ```Python
    from typing import Union
    from fastapi import Cookie, FastAPI, Header, Path, Query
    
    app = FastAPI()
    
    
    @app.get("/items/{item_id}")
    def main(
        item_id: int = Path(gt=0),
        query: Union[str, None] = Query(default=None, max_length=10),
        session: Union[str, None] = Cookie(default=None, min_length=3),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - NONE ([#124326](https://github.com/kubernetes/kubernetes/pull/124326), [@ritazh](https://github.com/ritazh)) [SIG Auth]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  6. ChangeLog.md

    - [`KT-65821`](https://youtrack.jetbrains.com/issue/KT-65821) K2: [NONE_APPLICABLE] None of the following functions is applicable: [constructor(message: String?): Throwable, constructor(cause: Throwable?): Throwable, constructor(): Throwable, ...]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top