Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,329 for Equate (0.16 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/testdata/script/mod_get_indirect.txt

    # in the current directory doesn't import anything.
    go get -u
    go list -m all
    stdout 'quote v1.5.1$'
    grep 'rsc.io/quote v1.5.1$' go.mod
    
    # get -u should find quote v1.5.2 once there is a use.
    cp $WORK/tmp/usequote.go x.go
    go get -u
    go list -m all
    stdout 'quote v1.5.2$'
    grep 'rsc.io/quote v1.5.2$' go.mod
    
    # it should also update x/text later than requested by v1.5.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_sum.txt

    go get rsc.io/quote@v1.5.2
    go mod tidy
    grep rsc.io/sampler go.sum
    
    # go.sum should not normally lose old entries
    go get rsc.io/quote@v1.0.0
    grep 'rsc.io/quote v1.0.0' go.sum
    grep 'rsc.io/quote v1.5.2' go.sum
    grep rsc.io/sampler go.sum
    
    # go mod tidy should clear dead entries from go.sum
    go mod tidy
    grep 'rsc.io/quote v1.0.0' go.sum
    ! grep 'rsc.io/quote v1.5.2' go.sum
    ! grep rsc.io/sampler go.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 742 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/mod_proxy_invalid.txt

    env GO111MODULE=on
    env GOPROXY=$GOPROXY/invalid
    
    ! go list -m rsc.io/quote@latest
    stderr '^go: module rsc.io/quote: invalid response from proxy "'$GOPROXY'": invalid character ''i'' looking for beginning of value$'
    
    ! go list -m rsc.io/quote@1.5.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 397 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_test.txt

    cp go.mod.empty go.mod
    go mod edit -require=rsc.io/quote@v1.5.1
    go get -t -u m/a
    grep 'rsc.io/quote v1.5.2$' go.mod
    
    # 'go get -t -u' should not add or update test dependencies
    # of imported packages, including packages imported from tests.
    cp go.mod.empty go.mod
    go get -t -u m/b
    ! grep rsc.io/quote go.mod
    go mod edit -require=rsc.io/quote@v1.5.1
    go get -t -u m/b
    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)
  10. src/cmd/go/testdata/script/mod_sum_replaced.txt

    env GO111MODULE=on
    
    # After 'go get', the go.sum file should contain the sum for the module.
    go get rsc.io/quote@v1.5.0
    grep 'rsc.io/quote v1.5.0' go.sum
    
    # If we replace the module and run 'go mod tidy', we should get a sum for the replacement.
    go mod edit -replace rsc.io/quote@v1.5.0=rsc.io/quote@v1.5.1
    go mod tidy
    grep 'rsc.io/quote v1.5.1' go.sum
    cp go.sum go.sum.tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 677 bytes
    - Viewed (0)
Back to top