Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for path_prefix (0.15 sec)

  1. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                } else if (key.startsWith(CLIENT_PREFIX)) {
                    clientConfigMap.put(key.substring(CLIENT_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(XPATH_PREFIX)) {
                    xpathConfigMap.put(key.substring(XPATH_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(META_PREFIX)) {
                    metaConfigMap.put(key.substring(META_PREFIX.length()), entry.getValue());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/path.go

    import (
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // PathToPrefix converts raw string to the prefix that will be used in the
    // symbol table. All control characters, space, '%' and '"', as well as
    // non-7-bit clean bytes turn into %xx. The period needs escaping only in the
    // last segment of the path, and it makes for happier users if we escape that as
    // little as possible.
    func PathToPrefix(s string) string {
    	slash := strings.LastIndex(s, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-path-alphanum-specialchars-mix.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-path-alphanum-specialchars-mix
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 212 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-remove.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: header-http-echo
    spec:
      parentRefs:
        - name: acme-gw
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /remove-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                remove:
                  - x-request-id
          backendRefs:
            - name: echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 446 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-add.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: header-http-echo
    spec:
      parentRefs:
        - name: acme-gw
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /add-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                add:
                  - name: my-header-name
                    value: my-header-value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 487 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-redirect-full.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-redirect
    spec:
      hostnames:
        - redirect.example
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /cayenne
          filters:
            - type: RequestRedirect
              requestRedirect:
                path:
                  type: ReplaceFullPath
                  replaceFullPath: /paprika
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 485 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-redirect-prefix.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-redirect
    spec:
      hostnames:
        - redirect.example
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /cayenne
          filters:
            - type: RequestRedirect
              requestRedirect:
                path:
                  type: ReplacePrefixMatch
                  replacePrefixMatch: /paprika
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-request-header-set.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: header-http-echo
    spec:
      parentRefs:
        - name: acme-gw
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /edit-a-request-header
          filters:
            - type: RequestHeaderModifier
              requestHeaderModifier:
                set:
                  - name: my-header-name
                    value: my-new-header-value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 492 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-referencegrant.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: foo
      namespace: foo
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: bar
          namespace: bar
    ---
    kind: ReferenceGrant
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 598 bytes
    - Viewed (0)
  10. pkg/ctrlz/ctrlz.go

    	return assets.ParseTemplate(layout, page)
    }
    
    func registerTopic(router *mux.Router, layout *template.Template, t fw.Topic) {
    	htmlRouter := router.NewRoute().PathPrefix("/" + t.Prefix() + "z").Subrouter()
    	jsonRouter := router.NewRoute().PathPrefix("/" + t.Prefix() + "j").Subrouter()
    
    	tmpl := template.Must(template.Must(layout.Clone()).Parse("{{ define \"title\" }}" + t.Title() + "{{ end }}"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top