Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for apps (0.17 sec)

  1. cmd/sts-handlers_test.go

    				ClientSecret: "minio-client-app-secret",
    				ProviderURL:  openIDServer,
    				RedirectURL:  "http://127.0.0.1:10000/oauth_callback",
    			})
    			m[testRoleARNs[len(apps)-1]] = apps[len(apps)-1]
    		}
    
    		openIDServer2 := os.Getenv(EnvTestOpenIDServer2)
    		if openIDServer2 != "" {
    			apps = append(apps, OpenIDClientAppParams{
    				ClientID:     "minio-client-app-2",
    				ClientSecret: "minio-client-app-secret-2",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

        targetPort: 9443
      selector:
        component: controller
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: metallb
        component: controller
      name: controller
      namespace: metallb-system
    spec:
      revisionHistoryLimit: 3
      selector:
        matchLabels:
          app: metallb
          component: controller
      template:
        metadata:
          annotations:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

      * **Alpha** RBAC authorization API group
    * Federation
      * federation api group is now **beta**
      * Services from all federated clusters are now registered in Cloud DNS (AWS and GCP).
    * Stateful Apps:
      * **alpha** PetSets manage stateful apps
      * **alpha** Init containers provide one-time setup for stateful containers
    * Updating:
      * Retry Pod/RC updates in kubectl rolling-update.
      * Stop 'kubectl drain' deleting pods with local storage.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  4. docs/ru/docs/deployment/docker.md

    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    
    # Если используете прокси-сервер, такой как Nginx или Traefik, добавьте --proxy-headers
    # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## Что такое "контейнер"
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  5. tests/test_generate_unique_id_function.py

            return "foo"
    
        app = FastAPI(generate_unique_id_function=broken_operation_id)
    
        @app.post("/")
        def post_root(item1: Item):
            return item1  # pragma: nocover
    
        @app.post("/second")
        def post_second(item1: Item):
            return item1  # pragma: nocover
    
        @app.post("/third")
        def post_third(item1: Item):
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Jan 13 15:10:26 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot-dashboard.json

                {
                  "datasource": {
                    "type": "prometheus",
                    "uid": "${datasource}"
                  },
                  "expr": "sum(pilot_xds_cds_reject{app=\"istiod\"}) or (absent(pilot_xds_cds_reject{app=\"istiod\"}) - 1)",
                  "format": "time_series",
                  "hide": false,
                  "intervalFactor": 1,
                  "legendFormat": "Rejected CDS Configs",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 61K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

    _2016-07-02_
    
     *  **We’ve rewritten HttpURLConnection and HttpsURLConnection.** Previously we
        shared a single HTTP engine between two frontend APIs: `HttpURLConnection`
        and `Call`. With this release we’ve rearranged things so that the
        `HttpURLConnection` frontend now delegates to the `Call` APIs internally.
        This has enabled substantial simplifications and optimizations in the OkHttp
        core for both frontends.
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/client-go/kubernetes"
    
    	apiannotation "istio.io/api/annotation"
    	"istio.io/api/label"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/networking/v1alpha3"
    	typev1beta1 "istio.io/api/type/v1beta1"
    	clientnetworking "istio.io/client-go/pkg/apis/networking/v1alpha3"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  9. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # DO NOT ADD ANY NEW EXCEPTIONS TO THIS LIST!
    # Instead, please use public APIs or public build rules TF provides.
    # If you need functionality that is not exposed, we will work with you to expand our public APIs.
    # TODO(b/173549186): Move Google-internal TF code out of learning/brain
    package_group(
        name = "internal",
        packages = [
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  10. fastapi/param_functions.py

        ```python
        from typing import Annotated
    
        from fastapi import FastAPI, Path
    
        app = FastAPI()
    
    
        @app.get("/items/{item_id}")
        async def read_items(
            item_id: Annotated[int, Path(title="The ID of the item to get")],
        ):
            return {"item_id": item_id}
        ```
        """
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
Back to top