Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for wildcards (0.14 sec)

  1. 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)
  2. 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)
  3. 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