Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ptrmap (0.12 sec)

  1. src/net/http/transport.go

    		if pc.alt == nil {
    			if err != errCallerOwnsConn {
    				pc.conn.Close()
    			}
    			close(pc.closech)
    		}
    	}
    	pc.mutateHeaderFunc = nil
    }
    
    var portMap = map[string]string{
    	"http":    "80",
    	"https":   "443",
    	"socks5":  "1080",
    	"socks5h": "1080",
    }
    
    func idnaASCIIFromURL(url *url.URL) string {
    	addr := url.Hostname()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * IllegalArgumentException} is thrown when the collection operation is performed. (This differs
       * from the {@code Collector} returned by {@link Collectors#toMap(Function, Function)}, which
       * throws an {@code IllegalStateException}.)
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// correct; however, the member function type will never be
    	// used in a substitution, so putting the wrong type in the
    	// substitution table is harmless.
    	mem := st.demangleType(isCast)
    	return &PtrMem{Class: cl, Member: mem}
    }
    
    // compactNumber parses:
    //
    //	<non-negative number> _
    func (st *state) compactNumber() int {
    	if len(st.str) == 0 {
    		st.fail("missing index")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top