Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for wildcards (0.24 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

                }]
              }]
            }
          }
        ],
        "listeners":[
          {
            "address": {
               "socket_address": {
                 "protocol": "TCP",
                 "address": "{{ .wildcard }}",
                 "port_value": {{ .envoy_status_port }}
               }
            },
            "filter_chains": [
              {
                "filters": [
                  {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/net/http/routing_tree_test.go

    	})
    
    	// A pattern ending in a single wildcard should not match a trailing slash URL.
    	pat2 := "/a/b/{w}"
    	test(buildTree(pat2), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", "", nil},
    		{"GET", "", "/a/b/c", pat2, []string{"c"}},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a multi wildcard should match both URLs.
    	pat3 := "/a/b/{w...}"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/contracts/descriptorContractUtils.kt

                ConstantReference.NOT_NULL -> KaContractReturnsNotNullEffectDeclaration(analysisContext.token)
                ConstantReference.WILDCARD -> KaContractReturnsSuccessfullyEffectDeclaration(analysisContext.token)
                is BooleanConstantReference -> KaContractReturnsSpecificValueEffectDeclaration(
                    KaContractConstantValue(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/cmd/root.go

    		&cfg.InboundInterceptionMode)
    
    	flag.BindEnv(fs, constants.InboundPorts, "b",
    		"Comma separated list of inbound ports for which traffic is to be redirected to Envoy (optional). "+
    			"The wildcard character \"*\" can be used to configure redirection for all ports. An empty list will disable.",
    		&cfg.InboundPortsInclude)
    
    	flag.BindEnv(fs, constants.LocalExcludePorts, "d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

                ConeContractConstantValues.NOT_NULL -> KaContractReturnsNotNullEffectDeclaration(builder.token)
                ConeContractConstantValues.WILDCARD -> KaContractReturnsSuccessfullyEffectDeclaration(builder.token)
                is KtBooleanConstantReference -> KaContractReturnsSpecificValueEffectDeclaration(
                    KaContractConstantValue(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. 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)
  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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/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
    - 5.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top