Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for productName (0.27 sec)

  1. pilot/pkg/security/authz/matcher/header_test.go

    	}{
    		{
    			Name: "exact match",
    			K:    ":path",
    			V:    "/productpage",
    			Expect: &routepb.HeaderMatcher{
    				Name: ":path",
    				HeaderMatchSpecifier: &routepb.HeaderMatcher_StringMatch{
    					StringMatch: StringMatcherExact("/productpage", false),
    				},
    			},
    		},
    		{
    			Name: "suffix match",
    			K:    ":path",
    			V:    "*/productpage*",
    			Expect: &routepb.HeaderMatcher{
    				Name: ":path",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. samples/bookinfo/networking/virtual-service-all-v1.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: productpage
    spec:
      hosts:
      - productpage
      http:
      - route:
        - destination:
            host: productpage
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 13 06:03:11 UTC 2018
    - 804 bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/tests/unit/test_productpage.py

    #   limitations under the License.
    #
    # Run from the top level productpage directory with:
    #
    # pip install -r test-requirements.txt
    # python -m unittest discover tests/unit
    
    import unittest
    
    import requests_mock
    
    import productpage
    
    
    class ApplianceTest(unittest.TestCase):
    
        def setUp(self):
            self.app = productpage.app.test_client()
    
        @requests_mock.Mocker()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. samples/ratelimit/local-rate-limit-service.yaml

                  - actions:
                      - header_value_match:
                          descriptor_value: "productpage"
                          expect_match: true
                          headers:
                            - name: :path
                              string_match:
                                prefix: /productpage
                                ignore_case: true
    
              typed_per_filter_config:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodePropertyAdapter.java

            this.project = project;
        }
    
        public String getAction() {
            return getXcodeProperty("ACTION");
        }
    
        public String getProductName() {
            return getXcodeProperty("PRODUCT_NAME");
        }
    
        public String getConfiguration() {
            return getXcodeProperty("CONFIGURATION");
        }
    
        public String getBuiltProductsDir() {
            return getXcodeProperty("BUILT_PRODUCTS_DIR");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. samples/bookinfo/networking/destination-rule-all-mtls.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: productpage
    spec:
      host: productpage
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: reviews
    spec:
      host: reviews
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. samples/bookinfo/gateway-api/bookinfo-gateway.yaml

      - matches:
        - path:
            type: Exact
            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 761 bytes
    - Viewed (0)
  8. samples/bookinfo/networking/bookinfo-gateway.yaml

      - "*"
      gateways:
      - bookinfo-gateway
      http:
      - match:
        - uri:
            exact: /productpage
        - uri:
            prefix: /static
        - uri:
            exact: /login
        - uri:
            exact: /logout
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: productpage
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-versions.yaml

    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: reviews
        version: v3
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: productpage-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: productpage
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: ratings-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 11 16:27:45 UTC 2022
    - 920 bytes
    - Viewed (0)
  10. samples/bookinfo/networking/destination-rule-all.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: productpage
    spec:
      host: productpage
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: reviews
    spec:
      host: reviews
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 972 bytes
    - Viewed (0)
Back to top