Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,172 for Equate (0.3 sec)

  1. src/crypto/ecdh/x25519.go

    		x2.Add(&x2, &z2)
    		z2.Add(&x3, &z3)
    		z3.Multiply(&tmp0, &x2)
    		z2.Multiply(&z2, &tmp1)
    		tmp0.Square(&tmp1)
    		tmp1.Square(&x2)
    		x3.Add(&z3, &z2)
    		z2.Subtract(&z3, &z2)
    		x2.Multiply(&tmp1, &tmp0)
    		tmp1.Subtract(&tmp1, &tmp0)
    		z2.Square(&z2)
    
    		z3.Mult32(&tmp1, 121666)
    		x3.Square(&x3)
    		tmp0.Add(&tmp0, &z3)
    		z3.Multiply(&x1, &z2)
    		z2.Multiply(&tmp1, &tmp0)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_gomodcache.txt

    env GO111MODULE=on
    
    # Explicitly set GOMODCACHE
    env GOMODCACHE=$WORK/modcache
    go env GOMODCACHE
    stdout $WORK[/\\]modcache
    go get rsc.io/quote@v1.0.0
    exists $WORK/modcache/cache/download/rsc.io/quote/@v/v1.0.0.info
    grep '{"Version":"v1.0.0","Time":"2018-02-14T00:45:20Z"}' $WORK/modcache/cache/download/rsc.io/quote/@v/v1.0.0.info
    
    # Ensure GOMODCACHE doesn't affect location of sumdb, but $GOMODCACHE/cache/download/sumdb is still written
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_commit.txt

    # get pseudo-version should record that version
    go get rsc.io/quote@v0.0.0-20180214005840-23179ee8a569
    grep 'rsc.io/quote v0.0.0-20180214005840-23179ee8a569' go.mod
    
    # but as commit should record as v1.5.1
    go get rsc.io/quote@23179ee8
    grep 'rsc.io/quote v1.5.1' go.mod
    
    # go mod edit -require does not interpret commits
    go mod edit -require rsc.io/quote@23179ee
    grep 'rsc.io/quote 23179ee' go.mod
    
    # but other commands fix them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_file_proxy.txt

    [!GOOS:windows] env GOPROXY=file://$WORK/gopath1/pkg/mod/cache/download
    go list
    grep v1.5.1 $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/list
    
    -- $WORK/x/go.mod --
    module x
    go 1.13
    require rsc.io/quote v1.5.1
    -- $WORK/x/x.go --
    package x
    import _ "rsc.io/quote"
    -- $WORK/x/go.sum --
    golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:pvCbr/wm8HzDD3fVywevekufpn6tCGPY3spdHeZJEsw=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_sum_mismatch.txt

    -- a/go.mod --
    go 1.18
    
    module example.com/hi
    
    require "rsc.io/quote" v1.5.2
    -- a/go.sum --
    rsc.io/sampler v1.3.0 h1:HLGR/BgEtI3r0uymSP/nl2uPLsUnNJX8toRyhfpBTII=
    rsc.io/sampler v1.3.0/go.mod h1:U1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    -- a/main.go --
    package main
    
    import (
    	"fmt"
    	"rsc.io/quote"
    )
    
    func main() {
    	fmt.Println(quote.Hello())
    }
    -- b/go.mod --
    go 1.18
    
    module example.com/hi2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. docs/features/r8_proguard.md

    also need rules from [Okio][okio] which is a dependency of this library.
    
     [okhttp3_pro]: https://raw.githubusercontent.com/square/okhttp/master/okhttp/src/main/resources/META-INF/proguard/okhttp3.pro
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_gonoproxy.txt

    env GOSUMDB=$sumdb' '$proxy/sumdb-wrong
    ! go get rsc.io/quote
    stderr 'SECURITY ERROR'
    
    # GONOSUMDB bypasses sumdb, for rsc.io/quote, rsc.io/sampler, golang.org/x/text
    env GONOSUMDB='*/quote,*/*mple*,golang.org/x'
    go get rsc.io/quote
    rm go.sum
    env GOPRIVATE='*/quote,*/*mple*,golang.org/x'
    env GONOPROXY=none # that is, proxy all despite GOPRIVATE
    go get rsc.io/quote
    
    # Download .info files needed for 'go list -m all' later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. manifests/charts/gateway/templates/_helpers.tpl

    app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
    app.kubernetes.io/managed-by: {{ .Release.Service }}
    {{- range $key, $val := .Values.labels }}
    {{- if and (ne $key "app") (ne $key "istio") }}
    {{ $key | quote }}: {{ $val | quote }}
    {{- end }}
    {{- end }}
    {{- end }}
    
    {{- define "gateway.selectorLabels" -}}
    app: {{ (.Values.labels.app | quote) | default (include "gateway.name" .) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_graph.txt

    env GO111MODULE=on
    
    go mod graph
    stdout '^m rsc.io/quote@v1.5.2$'
    stdout '^rsc.io/quote@v1.5.2 rsc.io/sampler@v1.3.0$'
    ! stdout '^m rsc.io/sampler@v1.3.0$'
    ! stderr 'get '$GOPROXY
    
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote
    go mod graph -x
    stderr 'get '$GOPROXY
    
    -- go.mod --
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 317 bytes
    - Viewed (0)
  10. src/cmd/dist/buildgo.go

    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package tzdata\n")
    	fmt.Fprintln(&buf)
    	fmt.Fprintf(&buf, "const zipdata = %s\n", quote(zip))
    
    	writefile(buf.String(), file, writeSkipSame)
    }
    
    // quote is like strconv.Quote but simpler and has output
    // that does not depend on the exact Go bootstrap version.
    func quote(s string) string {
    	const hex = "0123456789abcdef"
    	var out strings.Builder
    	out.WriteByte('"')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:44:00 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top