Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for v3 (0.03 sec)

  1. src/mdo/model-v3.vm

    Guillaume Nodet <******@****.***> 1699297484 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    git commit -a -m 'another'
    git tag v2.0.2
    git tag branch-v2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    cp stdout v3/sub/dir/file.txt
    git add v3
    git commit -a -m 'add v3/sub/dir/file.txt'
    git tag branch-v3
    
    at 2018-04-17T22:23:00-04:00
    git checkout master
    git tag -a v1.2.4-annotated -m 'v1.2.4-annotated'
    
    cd ..
    
    hg init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_replace_import.txt

    -- a/b/b.go--
    package b
    
    -- b/go.mod --
    module a.localhost/b
    -- b/b.go --
    package b
    
    -- x/go.mod --
    module x.localhost
    -- x/x.go --
    package x
    -- x/v3.go --
    package v3
    import _ "x.localhost/v3"
    
    -- v3/go.mod --
    module x.localhost/v3
    -- v3/x.go --
    package x
    
    -- w/go.mod --
    module w.localhost
    -- w/skip/skip.go --
    // Package skip is nested below nonexistent package w.
    package skip
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    cd ../3-to-gomod-4
    ! go list -m gopkg.in/src-d/go-git.v3
    stderr '^go: gopkg\.in/src-d/go-git\.v3@v3\.2\.0 \(replaced by gopkg\.in/src-d/go-git\.v3@v3\.0\.0-20190801152248-0d1a009cbb60\): version "v3\.0\.0-20190801152248-0d1a009cbb60" invalid: go\.mod has non-\.\.\.\.v3 module path "gopkg\.in/src-d/go-git\.v4" at revision 0d1a009cbb60$'
    
    -- 4-to-4/go.mod --
    module golang.org/issue/34254
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_major.txt

    # ensure that 'direct' mode can resolve the package to a module.
    
    go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
    
    go list -m vcs-test.golang.org/git/v3pkg.git/v3
    stdout '^vcs-test.golang.org/git/v3pkg.git/v3 v3.0.0$'
    
    go get vcs-test.golang.org/git/empty-v2-without-v1.git/v2@v2.0.0
    
    go list -m vcs-test.golang.org/git/empty-v2-without-v1.git/v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 616 bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapReplaceValuesTester.java

        List<V> values = Arrays.asList(v0(), v2(), v3());
        multimap().replaceValues(k0(), values);
        assertContentsAnyOrder(getCollection, v0(), v2(), v3());
      }
    
      @MapFeature.Require(absent = SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testReplaceValuesRemoveNotSupported() {
        List<V> values = Collections.singletonList(v3());
        try {
          multimap().replaceValues(k0(), values);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableBiMap.java

      }
    
      public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3) {
        return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2, k3, v3));
      }
    
      public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
        return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2, k3, v3, k4, v4));
      }
    
      public static <K, V> ImmutableBiMap<K, V> of(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_replace.txt

    stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
    
    # The same module can't be used as two different paths.
    cd multiple-paths
    ! go mod vendor
    stderr 'rsc.io/quote/v3@v3.0.0 used for two different module paths \(not-rsc.io/quote/v3 and rsc.io/quote/v3\)'
    
    -- go.mod --
    module example.com/replace
    
    require rsc.io/quote/v3 v3.0.0
    replace rsc.io/quote/v3 => ./vendor/not-rsc.io/quote/v3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/odd-tags.txt

    at 2022-02-23T14:41:55-05:00
    git branch v3-dev
    git checkout v3-dev
    cp v3/go.mod go.mod
    git commit go.mod -m 'update to /v3'
    git tag 'v3.0.0-20220223184802-12d19af20458'
    
    git checkout main
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    9d863d525bbfcc8eda09364738c4032393711a56 refs/heads/main
    cce3d0f5d2ec85678cca3c45ac4a87f3be5efaca refs/heads/v3-dev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/git_test.go

    		{
    			repo:   hgrepo1,
    			rev:    "v3",
    			subdir: "v3/sub/dir",
    			files: map[string]uint64{
    				"prefix/v3/sub/dir/file.txt": 16,
    			},
    		},
    
    		{
    			repo:   gitrepo1,
    			rev:    "v3",
    			subdir: "v3/sub",
    			files: map[string]uint64{
    				"prefix/":                    0,
    				"prefix/v3/":                 0,
    				"prefix/v3/sub/":             0,
    				"prefix/v3/sub/dir/":         0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top