Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for cookieMap (0.54 sec)

  1. src/net/http/cookiejar/jar_test.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cookiejar
    
    import (
    	"fmt"
    	"net/http"
    	"net/url"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    // tNow is the synthetic current time used as now during testing.
    var tNow = time.Date(2013, 1, 1, 12, 0, 0, 0, time.UTC)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        implementation. This is useful in sandboxed environments like Google App
        Engine.
    
     *  **OkHttp now does cookies.** We've replaced `java.net.CookieHandler` with
        a new interface, `CookieJar` and added our own `Cookie` model class. This
        new cookie follows the latest RFC and supports the same cookie attributes
        as modern web browsers.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    gopkg.in/juju/worker.v1,v1.0.0-20191018043616-19a698a7150f,h1:UAHa7z4EdrOcMN+9p5P+ojJshcIC34vwi0hCmEL6Qf8=,2e0da8053029ca9da961f8e6f1037a9d7ba12623e5c16fc5f88bf1a724c5dd23
    gopkg.in/karalabe/cookiejar.v2,v2.0.0-20150724131613-8dcd6a7f4951,h1:DMTcQRFbEH62YPRWwOI647s2e5mHda3oBPMHfrLs2bw=,07aae15601f54a5806705d218e313794118d54d9dda7addc1bf4bda4332dfc16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Cookie.Raw", Field, 0},
    		{"Cookie.RawExpires", Field, 0},
    		{"Cookie.SameSite", Field, 11},
    		{"Cookie.Secure", Field, 0},
    		{"Cookie.Unparsed", Field, 0},
    		{"Cookie.Value", Field, 0},
    		{"CookieJar", Type, 0},
    		{"DefaultClient", Var, 0},
    		{"DefaultMaxHeaderBytes", Const, 0},
    		{"DefaultMaxIdleConnsPerHost", Const, 0},
    		{"DefaultServeMux", Var, 0},
    		{"DefaultTransport", Var, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg net/http/cookiejar, func New(*Options) (*Jar, error)
    pkg net/http/cookiejar, method (*Jar) Cookies(*url.URL) []*http.Cookie
    pkg net/http/cookiejar, method (*Jar) SetCookies(*url.URL, []*http.Cookie)
    pkg net/http/cookiejar, type Jar struct
    pkg net/http/cookiejar, type Options struct
    pkg net/http/cookiejar, type Options struct, PublicSuffixList PublicSuffixList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  6. api/go1.txt

    pkg net/http, type Cookie struct, Unparsed []string
    pkg net/http, type Cookie struct, Value string
    pkg net/http, type CookieJar interface { Cookies, SetCookies }
    pkg net/http, type CookieJar interface, Cookies(*url.URL) []*Cookie
    pkg net/http, type CookieJar interface, SetCookies(*url.URL, []*Cookie)
    pkg net/http, type Dir string
    pkg net/http, type File interface { Close, Read, Readdir, Seek, Stat }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top