Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,172 for Equate (0.16 sec)

  1. 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)
  2. mkdocs.yml

    site_name: OkHttp
    site_url: https://square.github.io/okhttp/
    repo_name: OkHttp
    repo_url: https://github.com/square/okhttp
    site_description: "Square’s meticulous HTTP client for the JVM, Android, and GraalVM"
    site_author: Square, Inc.
    remote_branch: gh-pages
    edit_uri: ""
    
    copyright: 'Copyright © 2022 Block, Inc.'
    
    theme:
      name: 'material'
      favicon: assets/images/icon-square.png
      logo: assets/images/icon-square.png
      palette:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/testdata/script/mod_list.txt

    stdout ^math/big
    
    # rsc.io/quote/buggy should be listable as a package,
    # even though it is only a test.
    go list -mod=mod rsc.io/quote/buggy
    
    # rsc.io/quote/buggy should not be listable as a module
    go list -m -e -f '{{.Error.Err}}' nonexist rsc.io/quote/buggy
    stdout '^module nonexist: not a known dependency$'
    stdout '^module rsc.io/quote/buggy: not a known dependency$'
    
    ! go list -m nonexist rsc.io/quote/buggy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/net/url/url.go

    // When the port is present, it is separated from the host with a colon.
    // When the host is an IPv6 address, it must be enclosed in square brackets:
    // "[fe80::1]:80". The [net.JoinHostPort] function combines a host and port
    // into a string suitable for the Host field, adding square brackets to
    // the host when necessary.
    //
    // Note that the Path field is stored in decoded form: /%47%6f%2f becomes /Go/.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/malformed_gosum_issue62345.txt

    -- main.go --
    package main
    
    import (
    	"fmt"
    
    	"rsc.io/quote"
    )
    
    func main() {
    	fmt.Println(quote.Hello())
    }
    
    -- go.sum.after-tidy --
    golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:pvCbr/wm8HzDD3fVywevekufpn6tCGPY3spdHeZJEsw=
    golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
    rsc.io/quote v1.5.2 h1:3fEykkD9k7lYzXqCYrwGAf7iNhbk4yCjHmKBN9td4L0=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/templates/_affinity.tpl

            {{- range $key, $val := .global.arch }}
              {{- if gt ($val | int) 0 }}
              - {{ $key | quote }}
              {{- end }}
            {{- end }}
            {{- end }}
            {{- range $key, $val := $nodeSelector }}
            - key: {{ $key }}
              operator: In
              values:
              - {{ $val | quote }}
            {{- end }}
      {{- end }}
    {{- end }}
    
    {{- define "nodeAffinityPreferredDuringScheduling" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_why_download_graph.txt

    go mod download rsc.io/quote
    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
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    ! 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
    grep '^rsc\.io/quote v1\.5\.2/go\.mod h1:' go.work.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/kt/PostMultipart.kt

        val requestBody =
          MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart(
              "image",
              "logo-square.png",
              File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG),
            )
            .build()
    
        val request =
          Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_versions.txt

    env GO111MODULE=off
    ! go get rsc.io/quote@v1.5.1
    stderr '^go: modules disabled by GO111MODULE=off'
    ! go build rsc.io/quote@v1.5.1
    stderr '^package rsc.io/quote@v1.5.1: can only use path@version syntax with ''go get'' and ''go install'' in module-aware mode$'
    
    env GO111MODULE=on
    cd x
    ! go build rsc.io/quote@v1.5.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 517 bytes
    - Viewed (0)
Back to top