Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,908 for containers (0.23 sec)

  1. guava-testlib/src/com/google/common/collect/testing/TestStringSetGenerator.java

       * containers with a known order other than insertion order must override this method.
       *
       * <p>Note: This default implementation is overkill (but valid) for an unordered container. An
       * equally valid implementation for an unordered container is to throw an exception. The chosen
       * implementation, however, has the advantage of working for insertion-ordered containers, as
       * well.
       */
      @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

    // Pod. Ephemeral containers may not be removed or restarted.
    message EphemeralContainer {
      // Ephemeral containers have all of the fields of Container, plus additional fields
      // specific to ephemeral containers. Fields in common with Container are in the
      // following inlined struct so than an EphemeralContainer may easily be converted
      // to a Container.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/node/v1alpha1/generated.proto

      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    // all containers in a pod. RuntimeClasses are (currently) manually defined by a
    // user or cluster provisioner, and referenced in the PodSpec. The Kubelet is
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    // RuntimeClass defines a class of container runtime supported in the cluster.
    // The RuntimeClass is used to determine which container runtime is used to run
    // all containers in a pod. RuntimeClasses are (currently) manually defined by a
    // user or cluster provisioner, and referenced in the PodSpec. The Kubelet is
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  5. .github/workflows/osv-scanner-scheduled.yml

            --lockfile=requirements.txt:./requirements_lock_3_12.txt
            --lockfile=requirements.txt:./ci/official/containers/linux_arm64/devel.requirements.txt
            --lockfile=requirements.txt:./ci/official/containers/linux_arm64/jax.requirements.txt
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 06 17:09:49 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    !!! info
        If you are using containers, for example with Docker or Kubernetes, I'll tell you more about that in the next chapter: [FastAPI in Containers - Docker](docker.md){.internal-link target=_blank}.
    
        In particular, when running on **Kubernetes** you will probably **not** want to use Gunicorn and instead run **a single Uvicorn process per container**, but I'll tell you about it later in that chapter.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * test method needs to create multiple containers while retaining the ability to use {@link
       * #expectContents(Object[]) expectContents(E...)} and other convenience methods. The creation of
       * multiple containers in a single method is discouraged in most cases, but it is vital to the
       * iterator tests.
       *
       * @return the new container instance
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.injected

            prometheus.io/scrape: "true"
            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            ports:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1K bytes
    - Viewed (0)
  9. buildscripts/upgrade-tests/compose.yml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: minio/minio:${MINIO_VERSION}
      command: server http://minio{1...4}/data{1...3}
      env_file:
        - ./minio.env
      expose:
        - "9000"
        - "9001"
    
    # starts 4 docker containers running minio server instances.
    # using nginx reverse proxy, load balancing, you can access
    # it through port 9000.
    services:
      minio1:
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Nov 03 21:18:18 GMT 2023
    - 1.4K bytes
    - Viewed (1)
  10. .github/workflows/mint/minio-erasure.yaml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: quay.io/minio/minio:${JOB_NAME}
      command: server --console-address ":9001" edata{1...4}
      expose:
        - "9000"
        - "9001"
      environment:
        MINIO_CI_CD: "on"
        MINIO_ROOT_USER: "minio"
        MINIO_ROOT_PASSWORD: "minio123"
        MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
      healthcheck:
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Nov 03 21:18:18 GMT 2023
    - 1.2K bytes
    - Viewed (0)
Back to top