Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for wildcards (0.18 sec)

  1. pkg/config/analysis/local/context.go

    	i.currentAnalyzer = analyzerName
    }
    
    func (i *istiodContext) GetMessages(analyzerNames ...string) diag.Messages {
    	result := diag.Messages{}
    	if len(analyzerNames) == 0 {
    		// no AnalyzerNames is equivalent to a wildcard, requesting all messages.
    		for _, msgs := range i.messages {
    			result.Add(*msgs...)
    		}
    	} else {
    		for _, name := range analyzerNames {
    			if msgs, ok := i.messages[name]; ok {
    				result.Add(*msgs...)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/SampleIncludeProcessor.java

            if (matcher.matches()) {
                tags.addAll(Arrays.asList(matcher.group(1).split(",")));
            }
            return tags;
        }
    
        /**
         * When tags are empty or contain a single wildcard tag, the whole sample is returned (with all tag lines removed).
         *
         * @see "https://docs.asciidoctor.org/asciidoc/latest/directives/include-tagged-regions/#tag-filtering"
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/net/http/server_test.go

    		handler    Handler
    		wantRegexp string
    	}{
    		{"", h, "invalid pattern"},
    		{"/", nil, "nil handler"},
    		{"/", HandlerFunc(nil), "nil handler"},
    		{"/{x", h, `parsing "/\{x": at offset 1: bad wildcard segment`},
    		{"/a", h, `conflicts with pattern.* \(registered at .*/server_test.go:\d+`},
    	} {
    		t.Run(fmt.Sprintf("%s:%#v", test.pattern, test.handler), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 13:54:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/net/iprawsock.go

    // IP addresses.
    //
    // See func [Dial] for a description of the network and address
    // parameters.
    func ResolveIPAddr(network, address string) (*IPAddr, error) {
    	if network == "" { // a hint wildcard for Go 1.0 undocumented behavior
    		network = "ip"
    	}
    	afnet, _, err := parseNetwork(context.Background(), network, false)
    	if err != nil {
    		return nil, err
    	}
    	switch afnet {
    	case "ip", "ip4", "ip6":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway_test.go

    			2,
    		},
    		{
    			"multi-server-config",
    			[]config.Config{gwHTTPFoo, gwHTTPWildcardAlternate, gwHTTPWildcard},
    			2,
    			3,
    			map[string]int{"http.7": 2, "http.8": 1},
    			3,
    		},
    		{
    			"http-tcp-wildcard-server-config",
    			[]config.Config{gwHTTPFoo, gwTCPWildcard},
    			2,
    			2,
    			map[string]int{"http.7": 1},
    			2,
    		},
    		{
    			"tcp-http-server-config",
    			[]config.Config{gwTCPWildcard, gwHTTPWildcard},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java

     * into itself leading to a stack overflow.
     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
     * So instead of binding the component under a 'wildcard' key it is now bound with an explicit
     * key. Since this is a default component this will be a plain binding of ModelProcessor to
     * this implementation type, ie. no hint/name.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. cmd/net.go

    func CheckLocalServerAddr(serverAddr string) error {
    	host, err := xnet.ParseHost(serverAddr)
    	if err != nil {
    		return config.ErrInvalidAddressFlag(err)
    	}
    
    	// 0.0.0.0 is a wildcard address and refers to local network
    	// addresses. I.e, 0.0.0.0:9000 like ":9000" refers to port
    	// 9000 on localhost.
    	if host.Name != "" && host.Name != net.IPv4zero.String() && host.Name != net.IPv6zero.String() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top