Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 111 for wildcards (0.67 sec)

  1. pilot/test/xdstest/validate.go

    		} else {
    			check[s] = i1
    		}
    	}
    
    	// Due to the trie based logic of FCM, an unset field is only a wildcard if no
    	// other FCM sets it. Therefore, we should ensure we explicitly set the FCM on
    	// all match clauses if its set on any other match clause See
    	// https://github.com/envoyproxy/envoy/issues/12572 for details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/middleware.md

    ```Python hl_lines="2  6-8"
    {!../../../docs_src/advanced_middleware/tutorial002.py!}
    ```
    
    Die folgenden Argumente werden unterstützt:
    
    * `allowed_hosts` – Eine Liste von Domain-Namen, die als Hostnamen zulässig sein sollten. Wildcard-Domains wie `*.example.com` werden unterstützt, um Subdomains zu matchen. Um jeden Hostnamen zu erlauben, verwenden Sie entweder `allowed_hosts=["*"]` oder lassen Sie diese Middleware weg.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/os/tempfile.go

    		}
    		return f, err
    	}
    }
    
    var errPatternHasSeparator = errors.New("pattern contains path separator")
    
    // prefixAndSuffix splits pattern by the last wildcard "*", if applicable,
    // returning prefix as the part before "*" and suffix as the part after "*".
    func prefixAndSuffix(pattern string) (prefix, suffix string, err error) {
    	for i := 0; i < len(pattern); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/vendor/golang.org/x/net/lif/link.go

    		}
    	}
    }
    
    // Links returns a list of logical data links.
    //
    // The provided af must be an address family and name must be a data
    // link name. The zero value of af or name means a wildcard.
    func Links(af int, name string) ([]Link, error) {
    	eps, err := newEndpoints(af)
    	if len(eps) == 0 {
    		return nil, err
    	}
    	defer func() {
    		for _, ep := range eps {
    			ep.close()
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top