Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for urlpkg (0.4 sec)

  1. src/net/http/request.go

    	"bufio"
    	"bytes"
    	"context"
    	"crypto/tls"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"mime"
    	"mime/multipart"
    	"net/http/httptrace"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"net/url"
    	urlpkg "net/url"
    	"strconv"
    	"strings"
    	"sync"
    	_ "unsafe" // for linkname
    
    	"golang.org/x/net/http/httpguts"
    	"golang.org/x/net/idna"
    )
    
    const (
    	defaultMaxMemory = 32 << 20 // 32 MB
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		longdir := filepath.Join(t.gorootTestDir, t.goDirName())
    		pkgs := goDirPackages(t.T, longdir, singlefilepkgs)
    		errPkg := len(pkgs) - 1
    		if wantError && action == "errorcheckandrundir" {
    			// The last pkg should compiled successfully and will be run in next case.
    			// Preceding pkg must return an error from compileInDir.
    			errPkg--
    		}
    		importcfgfile := importcfg(pkgs)
    		for i, pkg := range pkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. configure.py

      if is_windows() or is_cygwin():
        properties_path = cygpath(properties_path)
      with open(properties_path, 'r') as f:
        filedata = f.read()
    
      revision = re.search(r'Pkg.Revision = (\d+)', filedata)
      if revision:
        ndk_version = revision.group(1)
      else:
        raise Exception('Unable to parse NDK revision.')
      if int(ndk_version) not in _SUPPORTED_ANDROID_NDK_VERSIONS:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top