Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 169 for path_prefix (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                    'PathPrefix']
                                  rule: '(self.type in [''Exact'',''PathPrefix'']) ? !self.value.endsWith(''/.'')
                                    : true'
                                - message: type must be one of ['Exact', 'PathPrefix',
                                    'RegularExpression']
                                  rule: self.type in ['Exact','PathPrefix'] || self.type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. tests/integration/security/policy_attachment_only/testdata/authz/gateway-api.yaml.tmpl

    metadata:
      name: {{ .To.ServiceName }}
    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
      - "*.{{ .To.ServiceName }}.com"
      rules:
      - matches:
        - path: 
            type: PathPrefix
            value: /allow
          method: GET
        backendRefs:
        - name: "{{ .To.ServiceName }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 729 bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/path_test.go

    		{"", ""},
    		{"%foo%bar", "%25foo%25bar"},
    		{"\x01\x00\x7F☺", "%01%00%7f%e2%98%ba"},
    	}
    
    func TestPathToPrefix(t *testing.T) {
    	for _, tc := range escapeTests {
    		if got := PathToPrefix(tc.Path); got != tc.Escaped {
    			t.Errorf("expected PathToPrefix(%s) = %s, got %s", tc.Path, tc.Escaped, got)
    		}
    	}
    }
    
    func TestPrefixToPath(t *testing.T) {
    	for _, tc := range escapeTests {
    		got, err := PrefixToPath(tc.Escaped)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/data_dumper_logger_config.cc

            get_filename,
        const std::string &pass_prefix, bool print_module_scope,
        bool print_after_only_on_change, mlir::OpPrintingFlags op_printing_flags)
        : ::tensorflow::BridgeLoggerConfig(
              print_module_scope, print_after_only_on_change, op_printing_flags),
          get_filename_(get_filename),
          pass_prefix_(pass_prefix) {}
    
    void DataDumperLoggerConfig::printBeforeIfEnabled(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 00:41:24 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/default-match-http.yaml

      listeners:
      - name: http
        protocol: HTTP
        port: 80
    ---
    # This HTTPRoute demonstrates patch match defaulting. If no path match is
    # specified, CRD defaults adds a default PathPrefix match on the path "/". This
    # matches every HTTP request and ensures that route rules always have at
    # least one valid match.
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/alias.yaml

    spec:
      parentRefs:
      - name: third-party-gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /
        backendRefs:
        - name: httpbin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

            patterns:
            - exact: Authorization
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
        pathPrefix: /check
        serverUri:
          cluster: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
          timeout: 10s
          uri: http://my-custom-ext-authz.foo.svc.cluster.local
      statusOnError:
        code: Forbidden
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect.yaml

    spec:
      parentRefs:
        - name: my-filter-gateway
          sectionName: https
      hostnames:
        - my-filter.example.com
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /
          backendRefs:
            - name: my-filter-svc1
              weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/custom-http-provider-out2.yaml

            patterns:
            - exact: Authorization
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
        pathPrefix: /check
        serverUri:
          cluster: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
          timeout: 10s
          uri: http://my-custom-ext-authz.foo.svc.cluster.local
      statusOnError:
        code: Forbidden
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 12:45:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    	}
    	for _, srv := range vcsPaths {
    		if !str.HasPathPrefix(importPath, srv.pathPrefix) {
    			continue
    		}
    		m := srv.regexp.FindStringSubmatch(importPath)
    		if m == nil {
    			if srv.pathPrefix != "" {
    				return nil, importErrorf(importPath, "invalid %s import path %q", srv.pathPrefix, importPath)
    			}
    			continue
    		}
    
    		// Build map of named subexpression matches for expand.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top