Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,469 for Equate (0.34 sec)

  1. src/cmd/go/testdata/script/mod_query.txt

    go list -m -versions rsc.io/quote
    stdout '^rsc.io/quote v1.0.0 v1.1.0 v1.2.0 v1.2.1 v1.3.0 v1.4.0 v1.5.0 v1.5.1 v1.5.2 v1.5.3-pre1$'
    
    # Latest rsc.io/quote should be v1.5.2, not v1.5.3-pre1.
    go list -m rsc.io/quote@latest
    stdout 'rsc.io/quote v1.5.2$'
    
    # Same for rsc.io/quote@v1 and rsc.io/quote@v1.5 (with no patch version).
    go list -m rsc.io/quote@v1
    stdout 'rsc.io/quote v1.5.2$'
    go list -m rsc.io/quote@v1.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. README.md

     [okhttp]: https://square.github.io/okhttp/
     [okio]: https://github.com/square/okio
     [post_example]: https://raw.github.com/square/okhttp/master/samples/guide/src/main/java/okhttp3/guide/PostExample.java
     [r8_proguard]: https://square.github.io/okhttp/features/r8_proguard/
     [recipes]: https://square.github.io/okhttp/recipes/
     [snap]: https://s01.oss.sonatype.org/content/repositories/snapshots/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. docs/features/connections.md

    In OkHttp some fields of the address come from the URL (scheme, hostname, port) and the rest come from the [OkHttpClient](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-ok-http-client/).
    
    ### [Routes](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-route/)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_multirepo.txt

    -- x.go --
    package quote
    
    -- tmp/use_v2.go --
    package quote
    import _ "rsc.io/quote/v2"
    
    -- tmp/use_v2.mod --
    module rsc.io/quote
    require rsc.io/quote/v2 v2.0.1
    
    -- tmp/v2.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  5. docs/security/tls_configuration_history.md

    [OkHttp30]: https://square.github.io/okhttp/changelog_3x/#version-300
    [OkHttp310]: https://square.github.io/okhttp/changelog_3x/#version-310
    [OkHttp311]: https://square.github.io/okhttp/changelog_3x/#version-320
    [OkHttp312]: https://square.github.io/okhttp/changelog_3x/#version-330
    [OkHttp313]: https://square.github.io/okhttp/changelog_3x/#version-340
    [OkHttp314]: https://square.github.io/okhttp/changelog_3x/#version-310
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_replaced.txt

    cp go.mod.orig go.mod
    go list -versions -m rsc.io/quote
    stdout 'v1.3.0 v1.4.0'
    
    go get rsc.io/quote@v1.3
    go list -m rsc.io/quote
    stdout '^rsc.io/quote v1.3.0'
    
    go mod edit -replace rsc.io/quote@v1.3.1=rsc.io/quote@v1.4.0
    
    go list -versions -m rsc.io/quote
    stdout 'v1.3.0 v1.3.1 v1.4.0'
    
    go get rsc.io/quote@v1.3
    go list -m rsc.io/quote
    stdout '^rsc.io/quote v1.3.1 '
    
    go get rsc.io/quote@>v1.3.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_replace_dir.txt

    go mod download rsc.io/quote@v1.5.2
    
    ! go list $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    stderr '^directory ..[/\\]pkg[/\\]mod[/\\]rsc.io[/\\]quote@v1.5.2 outside main module or its selected dependencies$'
    
    go list $GOPATH/pkg/mod/rsc.io/quote@v1.5.1
    stdout 'rsc.io/quote'
    
    -- go.mod --
    module example.com/quoter
    
    require rsc.io/quote v1.5.2
    
    replace rsc.io/quote => rsc.io/quote v1.5.1
    
    -- use.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 681 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_query_exclude.txt

    # list excluded version
    go list -modfile=go.exclude.mod -m rsc.io/quote@v1.5.0
    stdout '^rsc.io/quote v1.5.0$'
    
    # list versions should not print excluded versions
    go list -m -versions rsc.io/quote
    stdout '\bv1.5.0\b'
    go list -modfile=go.exclude.mod -m -versions rsc.io/quote
    ! stdout '\bv1.5.0\b'
    
    # list query with excluded version
    go list -m rsc.io/quote@>=v1.5
    stdout '^rsc.io/quote v1.5.0$'
    go list -modfile=go.exclude.mod -m rsc.io/quote@>=v1.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_verify.txt

    go mod verify
    
    # Packages below module root should not be mentioned in go.sum.
    rm go.sum
    go mod edit -droprequire rsc.io/quote
    go get rsc.io/quote/buggy
    grep '^rsc.io/quote v1.5.2/go.mod ' go.sum
    ! grep buggy go.sum
    
    # non-existent packages below module root should not be mentioned in go.sum
    go mod edit -droprequire rsc.io/quote
    ! go list rsc.io/quote/morebuggy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top