Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for 30M (0.02 sec)

  1. common/scripts/check_clean_repo.sh

        PATCH_OUT="${ARTIFACTS}/${PATCH_NAME}"
        git diff > "${PATCH_OUT}"
    
        [ -n "${JOB_NAME}" ] && [ -n "${BUILD_ID}" ]
        IN_PROW="$?"
    
        # Don't persist large diffs (30M+) on CI
        LARGE_FILE="$(find "${ARTIFACTS}" -name "${PATCH_NAME}" -type 'f' -size +30M)"
        if [ "${IN_PROW}" -eq 0 ] && [ -n "${LARGE_FILE}" ]; then
          rm "${PATCH_OUT}"
          echo "WARNING: patch file was too large to persist ($(du -h "${PATCH_OUT}"))"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 11 22:57:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

              privileged: true
            # Request and limit resources to get guaranteed QoS.
            resources:
              requests:
                memory: "25Mi"
                cpu: "30m"
              limits:
                memory: "25Mi"
                cpu: "30m"
          # BEGIN_PROMETHEUS_TO_SD
          - name: prometheus-to-sd-exporter
            image: gke.gcr.io/prometheus-to-sd:v0.11.1-gke.1
            # Request and limit resources to get guaranteed QoS.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. operator/samples/pilot-advanced-override.yaml

    kind: IstioOperator
    spec:
      components:
        pilot:
          k8s:
            overlays:
            - kind: Deployment
              name: istiod
              patches:
              - path: spec.template.spec.containers.[name:discovery].args.[30m]
                value: "60m" # OVERRIDDEN
              - path: spec.template.spec.containers.[name:discovery].ports.[containerPort:8080].containerPort
                value: 8090 # OVERRIDDEN
            - kind: Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 18 18:00:25 UTC 2020
    - 598 bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/dashboard.libsonnet

    local variables = import './variables.libsonnet';
    
    {
      new(name):
        g.dashboard.new(name)
        + g.dashboard.graphTooltip.withSharedCrosshair()
        + g.dashboard.withRefresh('15s')
        + g.dashboard.time.withFrom('now-30m')
        + g.dashboard.time.withTo('now')
        + g.dashboard.withVariables([variables.datasource]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 354 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_timeout.txt

    # If no timeout is set explicitly, 'go test' should set
    # -test.timeout to its internal deadline.
    go test -v . --
    stdout '10m0s'
    
    # An explicit -timeout argument should be propagated to -test.timeout.
    go test -v -timeout 30m . --
    stdout '30m0s'
    
    -- a/timeout_test.go --
    package t
    import (
    	"flag"
    	"fmt"
    	"testing"
    )
    func TestTimeout(t *testing.T) {
    	fmt.Println(flag.Lookup("test.timeout").Value.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 04 20:38:05 UTC 2019
    - 448 bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    		},
    		{
    			// Pod: gcr.io/30 gcr.io/40
    
    			// Node1
    			// Image: gcr.io/20:latest 20MB, gcr.io/30:latest 30MB, gcr.io/40:latest 40MB
    			// Score: 100 * (30M + 40M * 1/2 - 23M) / (1000M * 2 - 23M) = 1
    
    			// Node2
    			// Image: 100 * (30M - 23M) / (1000M * 2 - 23M) = 0
    			// Score: 0
    			pod:          &v1.Pod{Spec: test3040},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

            overlays:
              - kind: Deployment
                name: istiod
                patches:
                  # Select list item by value
                  - path: spec.template.spec.containers.[name:discovery].args.[30m]
                    value: "60m" # OVERRIDDEN
                  # Select list item by key:value
                  - path: spec.template.spec.containers.[name:discovery].ports.[containerPort:8080].containerPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. tests/integration/security/fuzz/README.md

        go test ./tests/integration/security/fuzz/... -p 1 -v -tags="integfuzz integ" -test.run "TestFuzzAuthorization|TestRequestAuthentication" \
          --istio.test.nocleanup --istio.test.env kube  --istio.test.kube.deploy=false - -timeout 30m \
          --istio.test.pullpolicy=IfNotPresent --istio.test.kube.loadbalancer=false --log_output_level=tf:debug
        ```
    
    1. Wait for the test to complete and check the results, the test usually takes about 5 minutes.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 09 02:34:11 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.golden.yaml

          - args:
            - discovery
            - --monitoringAddr=:15014
            - --log_output_level=default:info
            - --domain
            - cluster.local
            - --keepaliveMaxServerConnectionAge
            - 30m
            env:
            - name: REVISION
              value: default
            - name: JWT_POLICY
              value: third-party-jwt
            - name: PILOT_CERT_PROVIDER
              value: istiod
            - name: POD_NAME
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. prow/benchtest.sh

          --test-arg "--benchmem" \
          --test-arg "--count=${BENCHMARK_COUNT}" \
          --test-arg "--cpu=${BENCHMARK_CPUS}" \
          --test-arg "--test.timeout=30m" \
          --test-arg "-tags=vtprotobuf"
        # Print out the results as well for ease of debugging, so they are in the logs instead of just output
        cat "${REPORT_PLAINTEXT}"
        ;;
      report)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 23:14:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top