Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for pathPrefix (0.59 sec)

  1. src/cmd/go/internal/modload/search.go

    		}
    	}
    
    	if cfg.BuildMod == "vendor" {
    		for _, mod := range MainModules.Versions() {
    			if modRoot := MainModules.ModRoot(mod); modRoot != "" {
    				walkPkgs(modRoot, MainModules.PathPrefix(mod), pruneGoMod|pruneVendor)
    			}
    		}
    		if HasModRoot() {
    			walkPkgs(VendorDir(), "", pruneVendor)
    		}
    		return
    	}
    
    	for _, mod := range modules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

    kind: HTTPRoute
    metadata:
      name: header
      namespace: default
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: echo
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /path
        filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-added-header
              value: added-value
        backendRefs:
        - name: echo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    		err = errNoSuchGroup
    	}
    	return err
    }
    
    // Lists objects in the minioMetaBucket at the given path prefix. All returned
    // items have the pathPrefix removed from their names.
    func listIAMConfigItems(ctx context.Context, objAPI ObjectLayer, pathPrefix string) <-chan itemOrErr[string] {
    	ch := make(chan itemOrErr[string])
    
    	go func() {
    		defer xioutil.SafeClose(ch)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                    '/' when type one of ['Exact', 'PathPrefix']
                                  rule: '(self.type in [''Exact'',''PathPrefix'']) ? self.value.startsWith(''/'')
                                    : true'
                                - message: must not contain '//' when type one of ['Exact',
                                    'PathPrefix']
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1beta1/generated.proto

    message AllowedHostPath {
      // pathPrefix is the path prefix that the host volume must match.
      // It does not support `*`.
      // Trailing slashes are trimmed when validating the path prefix with a host path.
      //
      // Examples:
      // `/foo` would allow `/foo`, `/foo/` and `/foo/bar`
      // `/foo` would not allow `/food` or `/etc/foo`
      optional string pathPrefix = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/builder_test.go

    						Port:                         9000,
    						Timeout:                      &durationpb.Duration{Seconds: 10},
    						FailOpen:                     true,
    						StatusOnError:                "403",
    						PathPrefix:                   "/check",
    						IncludeRequestHeadersInCheck: []string{"x-custom-id", "x-prefix-*", "*-suffix"},
    						//nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/gateway_test.go

    kind: HTTPRoute
    metadata:
      name: http
    spec:
      hostnames: ["my.domain.example"]
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get/
        backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
    spec:
      parentRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. pkg/ctrlz/topics/collection.go

    	l = template.Must(context.Layout().Clone())
    	c.itemTmpl = assets.ParseTemplate(l, "templates/collection/item.html")
    
    	_ = context.HTMLRouter().
    		StrictSlash(true).
    		NewRoute().
    		PathPrefix("/").
    		Methods("GET").
    		HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    			parts := strings.SplitN(req.URL.Path, "/", 4)
    			parts = parts[2:] // Skip the empty and title parts.
    
    			switch len(parts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. internal/dsync/dsync-server_test.go

    			lockMap: make(map[string]int64),
    		}
    		lockServer := lockServerHandler{
    			lsrv: lsrv,
    		}
    		lockServers[i] = lsrv
    
    		router := mux.NewRouter().SkipClean(true)
    		subrouter := router.PathPrefix("/").Subrouter()
    		subrouter.Methods(http.MethodPost).Path("/v1/health").HandlerFunc(lockServer.HealthHandler)
    		subrouter.Methods(http.MethodPost).Path("/v1/refresh").HandlerFunc(lockServer.RefreshHandler)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 23 16:46:37 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. cmd/api-router.go

    func registerAPIRouter(router *mux.Router) {
    	// Initialize API.
    	api := objectAPIHandlers{
    		ObjectAPI: newObjectLayerFn,
    	}
    
    	// API Router
    	apiRouter := router.PathPrefix(SlashSeparator).Subrouter()
    
    	var routers []*mux.Router
    	for _, domainName := range globalDomainNames {
    		if IsKubernetes() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top