Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 183 for Percentage (0.15 sec)

  1. samples/bookinfo/networking/virtual-service-ratings-test-abort.yaml

    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        fault:
          abort:
            percentage:
              value: 100.0
            httpStatus: 500
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 423 bytes
    - Viewed (0)
  2. samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml

    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        fault:
          delay:
            percentage:
              value: 100.0
            fixedDelay: 7s
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 422 bytes
    - Viewed (0)
  3. samples/bookinfo/networking/fault-injection-details-v1.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: details
    spec:
      hosts:
      - details
      http:
      - fault:
          abort:
            httpStatus: 555
            percentage:
              value: 100
        route:
        - destination:
            host: details
            subset: v1
      - route:
        - destination:
            host: details
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 09 16:11:17 UTC 2020
    - 522 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.
      // +optional
      optional int32 targetAverageUtilization = 2;
    
      // targetAverageValue is the target value of the average of the
      // resource metric across all relevant pods, as a raw value (instead of as
      // a percentage of the request), similar to the "pods" metric source type.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v1/types.go

    	MaxReplicas int32 `json:"maxReplicas" protobuf:"varint,3,opt,name=maxReplicas"`
    
    	// targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods;
    	// if not specified the default autoscaling policy will be used.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/lease_manager.go

    	return newLeaseManager(client, config.ReuseDurationSeconds, 0.05, config.MaxObjectCount)
    }
    
    // newLeaseManager creates a new lease manager with the number of buffered
    // leases, lease reuse duration in seconds and percentage. The percentage
    // value x means x*100%.
    func newLeaseManager(client *clientv3.Client, leaseReuseDurationSeconds int64, leaseReuseDurationPercent float64, maxObjectCount int64) *leaseManager {
    	return &leaseManager{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    			return nil, nil
    		}
    		percentage, err := parsePercentage(val)
    		if err != nil {
    			return nil, err
    		}
    		if percentage < 0 {
    			return nil, fmt.Errorf("eviction percentage threshold %v must be >= 0%%: %s", signal, val)
    		}
    		// percentage is a float and should not be greater than 1 (100%)
    		if percentage > 1 {
    			return nil, fmt.Errorf("eviction percentage threshold %v must be <= 100%%: %s", signal, val)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. .github/workflows/smokeshow.yml

              run-id: ${{ github.event.workflow_run.id }}
    
          - run: smokeshow upload htmlcov
            env:
              SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage}
              SMOKESHOW_GITHUB_COVERAGE_THRESHOLD: 100
              SMOKESHOW_GITHUB_CONTEXT: coverage
              SMOKESHOW_GITHUB_TOKEN: ${{ secrets.FASTAPI_SMOKESHOW_UPLOAD }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 01:06:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

        public LowMemoryDaemonExpirationStrategy(double minFreeMemoryPercentage) {
            Preconditions.checkArgument(minFreeMemoryPercentage >= 0, "Free memory percentage must be >= 0");
            Preconditions.checkArgument(minFreeMemoryPercentage <= 1, "Free memory percentage must be <= 1");
            this.minFreeMemoryPercentage = minFreeMemoryPercentage;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top