Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for 555 (0.03 sec)

  1. 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)
  2. operator/cmd/mesh/testdata/manifest-generate/input/pilot_k8s_settings.yaml

                      type: Utilization
                      averageUtilization: 444
            readinessProbe:
              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 555
            resources:
              requests:
                memory: 999Mi
            nodeSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/release-notes.css

    /* Same as code highlighting values in docs.css */
    .java_keyword {
      color: #963;
    }
    .java_comment {
      color: #998;
    }
    .java_plain, .java_type {
    
    }
    .java_separator {
    
    }
    .java_operator {
      color: #555;
    }
    .java_literal {
      color: #d14;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

        }
    
        def "can interpolate properties in project plugins block"() {
            when:
            file("gradle.properties") << """
        foo = 333
        bar = 444
        foo.bar = 555
    """
            buildScript("""plugins {\n$code\n}""")
    
            then:
            succeeds "help"
    
            where:
            code << [
                    'id("noop").version("${foo}")',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            1024L**4 + 1      | '1 TiB'
            1024L**4 * 21     | '21 TiB'
            1024L**5 - 1      | '1023.9 TiB'
    
            1024L**5          | '1 PiB'
            1024L**5 + 1      | '1 PiB'
            1024L**5 * 5      | '5 PiB'
            1024L**6 - 1      | '1023.9 PiB'
    
            1024L**6          | '1 EiB'
            1024L**6 + 1      | '1 EiB'
    
            Integer.MAX_VALUE | '1.9 GiB'
            Long.MAX_VALUE    | '7.9 EiB'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

              protocol: TCP
            - containerPort: 15017
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 555
              periodSeconds: 3
              timeoutSeconds: 5
            resources:
              requests:
                cpu: 500m
                memory: 999Mi
            securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xds_test.go

    			t.Fatalf("expected 1.1.1.1, got %v", endpoints["outbound|80||app.com"])
    		}
    
    		assertListEqual(t, xdstest.ExtractListenerNames(s.Listeners(proxy)), []string{
    			"0.0.0.0_80",
    			"5.5.5.5_443",
    			"virtualInbound",
    			"virtualOutbound",
    		})
    	})
    
    	t.Run("Ingress Listener", func(t *testing.T) {
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			ConfigString: scopeConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. cmd/httprange_test.go

    		expOffset, expLength int64
    	}{
    		{"bytes=0-", 0, 10},
    		{"bytes=1-", 1, 9},
    		{"bytes=0-9", 0, 10},
    		{"bytes=1-10", 1, 9},
    		{"bytes=1-1", 1, 1},
    		{"bytes=2-5", 2, 4},
    		{"bytes=-5", 5, 5},
    		{"bytes=-1", 9, 1},
    		{"bytes=-1000", 0, 10},
    	}
    	for i, testCase := range validRangeSpecs {
    		rs, err := parseRequestRangeSpec(testCase.spec)
    		if err != nil {
    			t.Errorf("unexpected err: %v", err)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 05 16:56:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    //	                                                                GOGC=off
    //	- type switch					4.9-5.5ms	2.1ms
    //	- binary search over a sorted list of types	5.5-5.9ms	2.5ms
    //	- linear scan, frequency-ordered list		5.9-6.1ms	2.7ms
    //	- linear scan, unordered list			6.4ms		2.7ms
    //	- hash table					6.5ms		3.1ms
    //
    // A perfect hash seemed like overkill.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/mmu.go

            border-radius: 50%;
            color: #fff;
            background: #555;
            text-align: center;
            cursor: help;
          }
          .help > span {
            display: none;
          }
          .help:hover > span {
            display: block;
            position: absolute;
            left: 1.1em;
            top: 1.1em;
            background: #555;
            text-align: left;
            width: 20em;
            padding: 0.5em;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top