Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 399 for unavoidable (0.24 sec)

  1. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> k = objects.compound(objects.compound(numbers));
    
        // You can also arbitrarily assign a more restricted type - not an intended
        // feature, exactly, but unavoidable (I think) and harmless
        Ordering<Integer> l = objects.compound(numbers);
    
        // This correctly doesn't work:
        // Ordering<Object> m = numbers.compound(objects);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/ratings/ratings.js

    var unavailable = false
    var healthy = true
    
    if (process.env.SERVICE_VERSION === 'v-unavailable') {
        // make the service unavailable once in 60 seconds
        setInterval(function () {
            unavailable = !unavailable
        }, 60000);
    }
    
    if (process.env.SERVICE_VERSION === 'v-unhealthy') {
        // make the service unavailable once in 15 minutes for 15 minutes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MBeanOsMemoryInfoTest.groovy

        private enum MemoryAvailability {
            AVAILABLE,
            UNAVAILABLE,
            INVALID_VALUE,
            ;
    
            String toString() {
                switch (this) {
                    case AVAILABLE:
                        return "available"
                    case UNAVAILABLE:
                        return "unavailable"
                    case INVALID_VALUE:
                        return "an invalid value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/testdata/describe/tls_config.json

                          "timeout": "0s",
                          "retry_policy": {
                            "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                            "num_retries": 2,
                            "retry_host_predicate": [
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. docs/metrics/healthcheck/README.md

      failureThreshold: 3
    ```
    
    ## Cluster probe
    
    ### Cluster-writeable probe
    
    The reply is '200 OK' if cluster has write quorum if not it returns '503 Service Unavailable'.
    
    ```
    curl http://minio1:9001/minio/health/cluster
    HTTP/1.1 503 Service Unavailable
    Accept-Ranges: bytes
    Content-Length: 0
    Server: MinIO
    Vary: Origin
    X-Amz-Bucket-Region: us-east-1
    X-Minio-Write-Quorum: 3
    X-Amz-Request-Id: 16239D6AB80EBECF
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/none_rds.json

                      },
                      "HostRewriteSpecifier": null,
                      "timeout": 0,
                      "retry_policy": {
                        "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes",
                        "num_retries": {
                          "value": 2
                        },
                        "retry_host_predicate": [
                          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/testdata/describe/http_config.json

                          "timeout": "0s",
                          "retry_policy": {
                            "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                            "num_retries": 2,
                            "retry_host_predicate": [
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. samples/bookinfo/src/docker-bake.hcl

      {
        name = "examples-bookinfo-ratings-v-delayed"
        args = {
          service_version = "v-delayed"
        }
        source = "ratings"
      },
      {
        name = "examples-bookinfo-ratings-v-unavailable"
        args = {
          service_version = "v-unavailable"
        }
        source = "ratings"
      },
      {
        name = "examples-bookinfo-ratings-v-unhealthy"
        args = {
          service_version = "v-unhealthy"
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            failure.assertHasCause("""No tool chain is available to build for platform 'unavailable':
      - ${toolChain.instanceDisplayName}:
          - Don't know how to build for platform 'unavailable'.""")
    
            where:
            type                           | config
            "unavailable architecture"     | "architecture 'sparc'"
            "unavailable operating system" | "operatingSystem 'solaris'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelPathSuggestionProvider.java

        }
    
        @Override
        public List<ModelPath> transform(final ModelPath unavailable) {
            Iterable<Suggestion> suggestions = Iterables.transform(availablePaths, new Function<ModelPath, Suggestion>() {
                @Override
                public Suggestion apply(ModelPath available) {
                    int distance = StringUtils.getLevenshteinDistance(unavailable.toString(), available.toString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top