Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for path_prefix (0.17 sec)

  1. internal/config/etcd/etcd.go

    		return nil, nil
    	}
    	cli, err := clientv3.New(cfg.Config)
    	if err != nil {
    		return nil, err
    	}
    	cli.KV = namespace.NewKV(cli.KV, cfg.PathPrefix)
    	cli.Watcher = namespace.NewWatcher(cli.Watcher, cfg.PathPrefix)
    	cli.Lease = namespace.NewLease(cli.Lease, cfg.PathPrefix)
    	return cli, nil
    }
    
    func parseEndpoints(endpoints string) ([]string, bool, error) {
    	etcdEndpoints := strings.Split(endpoints, config.ValueSeparator)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. samples/addons/loki.yaml

        app.kubernetes.io/version: "3.0.0"
        app.kubernetes.io/managed-by: Helm
    data:
      config.yaml: |
        
        auth_enabled: false
        common:
          compactor_address: 'http://loki:3100'
          path_prefix: /var/loki
          replication_factor: 1
          storage:
            filesystem:
              chunks_directory: /var/loki/chunks
              rules_directory: /var/loki/rules
        frontend:
          scheduler_address: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/util.go

    import (
    	"strings"
    )
    
    // hasPathPrefix returns true if the string matches pathPrefix exactly, or if is prefixed with pathPrefix at a path segment boundary
    func hasPathPrefix(s, pathPrefix string) bool {
    	// Short circuit if s doesn't contain the prefix at all
    	if !strings.HasPrefix(s, pathPrefix) {
    		return false
    	}
    
    	pathPrefixLength := len(pathPrefix)
    
    	if len(s) == pathPrefixLength {
    		// Exact match
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/http.yaml

      - name: gateway
        namespace: istio-system
      hostnames: ["second.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /second
        backendRefs:
        - name: httpbin-second
          port: 80
      - matches:
        - path:
            type: PathPrefix
            value: /
        backendRefs:
        - name: httpbin-wildcard
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/httproute.yaml

    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /mypath
        backendRefs:
        - name: my-service-1
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /mypath-012
        backendRefs:
        - name: my-service-2
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /my%20path/123
        backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 510 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/BaseApiManager.java

        protected String pathPrefix;
    
        protected enum FormatType {
            SEARCH, LABEL, POPULARWORD, FAVORITE, FAVORITES, PING, SCROLL, SUGGEST, OTHER;
        }
    
        public String getPathPrefix() {
            return pathPrefix;
        }
    
        public void setPathPrefix(final String pathPrefix) {
            this.pathPrefix = pathPrefix;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/simple-http-https/foo-route.yaml

      - name: example-gateway
        sectionName: https
      hostnames:
      - foo.example.com
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /
        backendRefs:
        - name: foo-app 
          port: 80
      - matches:
        - path:
            type: PathPrefix
            value: /orders
        backendRefs:
        - name: foo-orders-app 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 449 bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

        namespace: istio-system
      - group: ""
        kind: Service
        name: a-example
      hostnames: ["a.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /foo/bar
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/benchmark-httproute.yaml

      - name: gateway
        namespace: istio-system
      - kind: Mesh
        name: istio
      hostnames: ["a.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /foo/bar
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/zero.yaml

        namespace: istio-system
      hostnames: ["first.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get
        backendRefs:
          - name: httpbin-zero
            port: 8080
            weight: 0
      - matches:
        - path:
            type: PathPrefix
            value: /weighted-100
        backendRefs:
        - filters:
          - requestHeaderModifier:
              add:
              - name: foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top