Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 650 for Equate (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/vendor_outside_module.txt

    ! go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    stderr 'no required module provides package rsc.io/quote'
    ! go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    stderr 'no required module provides package rsc.io/quote'
    
    -- my-module/go.mod --
    module example.com/my-module
    
    go 1.20
    -- my-module/vendor/example.com/another-module/foo/bar/baz.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/generate.go

    func (e *{{ .Element }}) Mul(t1, t2 *{{ .Element }}) *{{ .Element }} {
    	{{ .Prefix }}Mul(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Square sets e = t * t, and returns e.
    func (e *{{ .Element }}) Square(t *{{ .Element }}) *{{ .Element }} {
    	{{ .Prefix }}Square(&e.x, &t.x)
    	return e
    }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/guide/GetExample.java

    /*
     * Copyright (C) 2013 Square, Inc.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top