Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 166 for wildcards (0.15 sec)

  1. src/vendor/golang.org/x/net/route/route.go

    // When RIBType is related to routes, arg might be a set of route
    // flags. When RIBType is related to network interfaces, arg might be
    // an interface index or a set of interface flags. In most cases, zero
    // means a wildcard.
    func FetchRIB(af int, typ RIBType, arg int) ([]byte, error) {
    	try := 0
    	for {
    		try++
    		mib := [6]int32{syscall.CTL_NET, syscall.AF_ROUTE, 0, int32(af), int32(typ), int32(arg)}
    		n := uintptr(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/http.yaml

            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
    kind: HTTPRoute
    metadata:
      name: redirect
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/cors.md

    В таком случае этот список должен содержать `http://localhost:8080`, чтобы фронтенд работал корректно.
    
    ## Подстановочный символ `"*"`
    
    В качестве списка источников можно указать подстановочный символ `"*"` ("wildcard"), чтобы разрешить любые источники.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 22 14:29:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/matcher/header_test.go

    			Name: "suffix match",
    			V:    "*suffix",
    			Expect: &matcher.PathMatcher{
    				Rule: &matcher.PathMatcher_Path{
    					Path: StringMatcherSuffix("suffix", false),
    				},
    			},
    		},
    		{
    			Name: "wildcard match",
    			V:    "*",
    			Expect: &matcher.PathMatcher{
    				Rule: &matcher.PathMatcher_Path{
    					Path: StringMatcherRegex(".+"),
    				},
    			},
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/registry/LanguageTypeModelRuleExtractorTest.groovy

            "rawLanguageTypeBuilder"      | "Parameter of type ${TypeBuilder.name} must declare a type parameter."                             | "non typed parameter"
            "wildcardLanguageTypeBuilder" | "Type '?' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)."                    | "wild card parameter"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/util_test.go

    		},
    		{
    			name:                  "invalid selector",
    			svc:                   makeFakeSvc("invalid value"),
    			expectedLabelSelector: nil,
    		},
    		{
    			name:                  "wildcard match",
    			svc:                   makeFakeSvc("{}"),
    			expectedLabelSelector: labels.Instance{},
    		},
    		{
    			name:                  "specific match",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/constants/constants.go

    	OwnerGroupsInclude = env.Register("ISTIO_OUTBOUND_OWNER_GROUPS", "*",
    		`Comma separated list of groups whose outgoing traffic is to be redirected to Envoy.
    A group can be specified either by name or by a numeric GID.
    The wildcard character "*" can be used to configure redirection of traffic from all groups.`)
    
    	OwnerGroupsExclude = env.Register("ISTIO_OUTBOUND_OWNER_GROUPS_EXCLUDE", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/middleware.md

    ```Python hl_lines="2  6-8"
    {!../../../docs_src/advanced_middleware/tutorial002.py!}
    ```
    
    The following arguments are supported:
    
    * `allowed_hosts` - A list of domain names that should be allowed as hostnames. Wildcard domains such as `*.example.com` are supported for matching subdomains. To allow any hostname either use `allowed_hosts=["*"]` or omit the middleware.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 10 18:27:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

        @Override
        StartParameterInternal getStartParameter();
    
        ProjectRegistry<ProjectInternal> getProjectRegistry();
    
        // A separate property, as the public getter does not use a wildcard type and cannot be overridden
        List<? extends IncludedBuildInternal> includedBuilds();
    
        /**
         * Resets the lifecycle for this Gradle object.
         */
        void resetState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/audit/policy/checker.go

    		if pathMatches(path, spec) {
    			return true
    		}
    	}
    
    	return false
    }
    
    // Check whether the path matches the path specification.
    func pathMatches(path, spec string) bool {
    	// Allow wildcard match
    	if spec == "*" {
    		return true
    	}
    	// Allow exact match
    	if spec == path {
    		return true
    	}
    	// Allow a trailing * subpath match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 22:24:14 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top