Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,469 for Equate (0.6 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    	t.Fatal("buggy!")
    }
    -- go.mod --
    module rsc.io/quote
    
    require rsc.io/sampler v1.3.0
    -- quote.go --
    // Copyright 2018 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 quote collects pithy sayings.
    package quote // import "rsc.io/quote"
    
    import "rsc.io/quote/v3"
    
    // Hello returns a greeting.
    func Hello() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. docs/works_with_okhttp.md

     * [PersistentCookieJar](https://github.com/franmontiel/PersistentCookieJar): A persistent `CookieJar`.
     * ⬜️ [Picasso](https://github.com/square/picasso): A powerful image downloading and caching library for Android.
     * ⬜️ [Retrofit](https://github.com/square/retrofit): Type-safe HTTP client for Android and Java by Square.
     * [ScribeJava](https://github.com/scribejava/scribejava): Simple OAuth library for Java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_update_unrelated_sum.txt

    go mod edit -replace rsc.io/quote@v1.5.2=rsc.io/quote@v1.5.1
    go get example.com/upgrade@v0.0.2
    ! grep '^rsc.io/quote v1.5.2 ' go.sum
    grep '^rsc.io/quote v1.5.1 ' go.sum
    cp go.mod.orig go.mod
    cp go.sum.orig go.sum
    
    
    # Delete the new version's zip (but not mod) from the cache and go offline.
    # 'go get' should fail when fetching the zip.
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    env GOPROXY=off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download.txt

    go mod download rsc.io/quote@v1.5.0
    ! stdout .
    ! stderr .
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.mod
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.zip
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.info
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_doc.txt

    go doc y
    stdout 'Package y is.*alphabet'
    stdout 'import "x/y"'
    go doc x/y
    stdout 'Package y is.*alphabet'
    ! go doc quote.Hello
    stderr 'doc: symbol quote is not a type' # because quote is not in local cache
    go list rsc.io/quote # now it is
    go doc quote.Hello
    stdout 'Hello returns a greeting'
    go doc quote
    stdout 'Package quote collects pithy sayings.'
    
    # Double-check when module x is outside GOPATH/src.
    env GOPATH=$WORK/emptygopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.2.txt

    rsc.io/QUOTE v1.5.2
    
    -- .mod --
    module rsc.io/QUOTE
    
    require rsc.io/quote v1.5.2
    -- .info --
    {"Version":"v1.5.2","Name":"","Short":"","Time":"2018-07-15T16:25:34Z"}
    -- go.mod --
    module rsc.io/QUOTE
    
    require rsc.io/quote v1.5.2
    -- QUOTE/quote.go --
    // Copyright 2018 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    rsc.io/QUOTE v1.5.3-PRE (sigh)
    
    -- .mod --
    module rsc.io/QUOTE
    
    require rsc.io/quote v1.5.2
    -- .info --
    {"Version":"v1.5.3-PRE","Name":"","Short":"","Time":"2018-07-15T16:25:34Z"}
    -- go.mod --
    module rsc.io/QUOTE
    
    require rsc.io/quote v1.5.2
    -- QUOTE/quote.go --
    // Copyright 2018 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_upgrade.txt

    go get rsc.io/quote@v1.5.1
    go list -m all
    stdout 'rsc.io/quote v1.5.1'
    grep 'rsc.io/quote v1.5.1$' go.mod
    
    # get -u should update dependencies of the package in the current directory
    go get -u
    grep 'rsc.io/quote v1.5.2$' go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+ // indirect' go.mod
    
    # get -u rsc.io/sampler should update only sampler's dependencies
    cp go.mod-v1.5.1 go.mod
    go get -u rsc.io/sampler
    grep 'rsc.io/quote v1.5.1$' go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/PostMultipart.java

        RequestBody requestBody = new MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart("image", "logo-square.png",
                RequestBody.create(
                    new File("docs/images/logo-square.png"),
                    MEDIA_TYPE_PNG))
            .build();
    
        Request request = new Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jun 24 12:59:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_case.txt

    env GO111MODULE=on
    
    go get
    go list -m all
    stdout '^rsc.io/quote v1.5.2'
    stdout '^rsc.io/QUOTE v1.5.2'
    
    go list -f 'DIR {{.Dir}} DEPS {{.Deps}}' rsc.io/QUOTE/QUOTE
    stdout 'DEPS.*rsc.io/quote'
    stdout 'DIR.*!q!u!o!t!e'
    
    go get rsc.io/QUOTE@v1.5.3-PRE
    go list -m all
    stdout '^rsc.io/QUOTE v1.5.3-PRE'
    
    go list -f '{{.Dir}}' rsc.io/QUOTE/QUOTE
    stdout '!q!u!o!t!e@v1.5.3-!p!r!e'
    
    -- go.mod --
    module x
    
    -- use.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 453 bytes
    - Viewed (0)
Back to top