Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 318 for 700m (0.04 sec)

  1. buildscripts/race.sh

    #!/usr/bin/env bash
    
    set -e
    
    export GORACE="history_size=7"
    export MINIO_API_REQUESTS_MAX=10000
    
    for d in $(go list ./...); do
    	CGO_ENABLED=1 go test -v -race --timeout 100m "$d"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 184 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/enable-core-dump-annotation.yaml.injected

                port: 15021
              periodSeconds: 15
              timeoutSeconds: 3
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/deployment-con-sec-uid.yaml

          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1
            securityContext:
              runAsUser: 1337
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 651 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

                port: 15021
              periodSeconds: 15
              timeoutSeconds: 3
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. operator/samples/pilot-k8s.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        pilot:
          k8s:
            resources:
              requests:
                cpu: 1000m # override from default 500m
                memory: 4096Mi # ... default 2048Mi
            hpaSpec:
              maxReplicas: 10 # ... default 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 28 14:16:35 UTC 2021
    - 340 bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/redis-master-controller.yaml

            role: master
            tier: backend
        spec:
          containers:
          - name: master
            image: registry.k8s.io/redis:e2e  # or just image: redis
            resources:
              requests:
                cpu: 100m
                memory: 100Mi
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 502 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/pod-con-sec-uid.yaml

        version: v1
    spec:
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v1
        securityContext:
          runAsUser: 1337
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 364 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/pod-sec-uid.yaml

        app: helloworld
        version: v2
    spec:
      securityContext:
        runAsUser: 1337
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v2
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 361 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/resource_annotations.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: resource
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: resource
      template:
        metadata:
          annotations:
            sidecar.istio.io/proxyCPU: "100m"
            sidecar.istio.io/proxyCPULimit: "1000m"
            sidecar.istio.io/proxyMemory: "1Gi"
            sidecar.istio.io/proxyMemoryLimit: "2Gi"
          labels:
            app: resource
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 578 bytes
    - Viewed (0)
  10. hack/testdata/sorted-pods/sorted-pod1.yaml

    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
Back to top