Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 366 for RSC (0.05 sec)

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

    package t
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/tx/tx_test.go --
    package tx_test
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    import "testing"
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/tx/tx.go --
    package tx
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/p1/p1.go --
    package p1 // import "vendor.org/p1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set.go

    			rsc.updatePod(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			rsc.deletePod(logger, obj)
    		},
    	})
    	rsc.podLister = podInformer.Lister()
    	rsc.podListerSynced = podInformer.Informer().HasSynced
    
    	rsc.syncHandler = rsc.syncReplicaSet
    
    	return rsc
    }
    
    // Run begins watching and syncing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_local.txt

    stderr '^go: rsc.io/fortune/nonexist@v0: module rsc.io/fortune@v0 found \(v0.0.1\), but does not contain package rsc.io/fortune/nonexist'
    
    # go install m@v should use local toolchain if not upgrading
    ! go install rsc.io/fortune/nonexist@v1
    ! stderr go1.22.9
    ! stderr switching
    stderr '^go: downloading rsc.io/fortune v1.0.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_retention.txt

    module m
    
    go 1.14
    
    require (
    	rsc.io/quote v1.5.2
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- x.go --
    package x
    import _ "rsc.io/quote"
    -- go.mod.crlf --
    module m
    
    go 1.14
    
    require (
    	rsc.io/quote v1.5.2
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- go.mod.unsorted --
    module m
    
    go 1.14
    
    require (
    	rsc.io/testonly v1.0.0 // indirect
    	rsc.io/quote v1.5.2
    )
    -- go.mod.indirect --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_indirect.txt

    go mod tidy
    ! grep rsc.io/quote go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+$' go.mod
    
    -- go.mod --
    module x
    require rsc.io/quote v1.5.1
    -- x.go --
    package x
    -- $WORK/tmp/usetext.go --
    package x
    import _ "golang.org/x/text"
    -- $WORK/tmp/uselang.go --
    package x
    import _ "golang.org/x/text/language"
    -- $WORK/tmp/usequote.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_retract_fix_version.txt

    ! go list -m all
    stderr 'go.mod:3: retract rsc.io/quote/v2: version "v3.0.1" invalid: should be v2, not v3$'
    
    cp go.mod.mismatch-v1 go.mod
    ! go list -m all
    stderr 'go.mod:3: retract rsc.io/quote: version "v3.0.1" invalid: should be v0 or v1, not v3$'
    
    -- go.mod --
    go 1.16
    
    retract latest
    -- go.mod.want --
    go 1.16
    
    retract v2.0.1
    
    module rsc.io/quote/v2
    -- go.mod.mismatch-v2 --
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_case.txt

    env GO111MODULE=on
    
    go get
    go list -m all
    stdout '^rsc.io/quote v1.5.2'
    stdout '^rsc.io/QUOTE v1.5.2'
    
    go list -f 'DIR {{.Dir}} DEPS {{.Deps}}' rsc.io/QUOTE/QUOTE
    stdout 'DEPS.*rsc.io/quote'
    stdout 'DIR.*!q!u!o!t!e'
    
    go get rsc.io/QUOTE@v1.5.3-PRE
    go list -m all
    stdout '^rsc.io/QUOTE v1.5.3-PRE'
    
    go list -f '{{.Dir}}' rsc.io/QUOTE/QUOTE
    stdout '!q!u!o!t!e@v1.5.3-!p!r!e'
    
    -- go.mod --
    module x
    
    -- use.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 453 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-replace.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-replace"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 397 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_clean_cache.txt

    go mod download rsc.io/quote@v1.5.0
    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
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.zip
    
    # '-n' should print commands but not actually execute them.
    go clean -modcache -n
    stdout '^rm -rf .*pkg.mod$'
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/govcs.txt

    # git can be disallowed
    env GOVCS=public:hg
    ! go get rsc.io/nonexist.git/hello
    stderr '^go: rsc.io/nonexist.git/hello: GOVCS disallows using git for public rsc.io/nonexist.git; see ''go help vcs''$'
    
    # hg can be disallowed
    env GOVCS=public:git
    ! go get rsc.io/nonexist.hg/hello
    stderr '^go: rsc.io/nonexist.hg/hello: GOVCS disallows using hg for public rsc.io/nonexist.hg; see ''go help vcs''$'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top