Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for tid1 (0.05 sec)

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

    # go work sync so that the sum file that's written is correct.
    # Exercises the fix to #50038.
    
    cp b/go.sum b/go.sum.want
    
    # As a sanity check, verify b/go.sum is tidy.
    cd b
    go mod tidy
    cd ..
    cmp b/go.sum b/go.sum.want
    
    # Run go work sync and verify it doesn't change b/go.sum.
    go work sync
    cmp b/go.sum b/go.sum.want
    
    -- b/go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 19:25:50 UTC 2022
    - 864 bytes
    - Viewed (1)
  2. src/cmd/go/testdata/script/mod_lazy_import_allmod.txt

    # but the new import is from what is initially a test-only dependency.
    
    # Control case: in Go 1.14, the original go.mod is tidy,
    # and the dependency on c is eagerly loaded.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    go list -m all
    stdout '^a v0.1.0 '
    stdout '^b v0.1.0 '
    stdout '^c v0.1.0 '
    
    # After adding a new import of b/y,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_lazy_new_import.txt

    #               c.1
    
    
    cp go.mod go.mod.old
    cp lazy.go lazy.go.old
    go mod tidy
    cmp go.mod go.mod.old
    
    # Before adding a new import, the go.mod file should
    # enumerate modules for all packages already imported.
    go list all
    cmp go.mod go.mod.old
    
    # When we add a new import of a package in an existing dependency,
    # and that dependency is already tidy, its transitive dependencies
    # should already be present.
    cp lazy.go.new lazy.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 27 23:27:52 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_invalid_path_dotname.txt

    # 'go list' works on the dotted package.
    go list example.com/dotname/.dot
    stdout '^example.com/dotname/.dot$'
    
    # 'go list' works on an importing package.
    go list .
    stdout '^m$'
    
    # 'go mod tidy' works.
    cp go.mod.empty go.mod
    go mod tidy
    go list -m example.com/dotname
    stdout '^example.com/dotname v1.0.0$'
    
    -- go.mod.empty --
    module m
    
    go 1.16
    -- go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/DataServiceImplTest.java

            final AccessResult accessResult3 = dataService.getAccessResult("id1", "http://www.id1.com/");
            assertNotNull(accessResult3);
            assertEquals("text/html", accessResult3.getMimeType());
    
            dataService.delete("id1");
    
            final AccessResult accessResult4 = dataService.getAccessResult("id1", "http://www.id1.com/");
            assertNull(accessResult4);
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/help.go

    'go help mod init' or https://golang.org/ref/mod#go-mod-init.
    
    To add missing module requirements or remove unneeded requirements,
    use 'go mod tidy'. For details, see 'go help mod tidy' or
    https://golang.org/ref/mod#go-mod-tidy.
    
    To add, upgrade, downgrade, or remove a specific module requirement, use
    'go get'. For details, see 'go help module-get' or
    https://golang.org/ref/mod#go-get.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    # ('go get' never makes a root into a non-root. Only 'go mod tidy' does that.)
    
    go get example.com/c@none
    go list -m all
    ! stdout '^example.com/a '
    ! stdout '^example.com/b '
    ! stdout '^example.com/c '
    
    
    # This time, we drop the explicit 'b' root by downgrading it to v0.1.0
    # (the version required by a.1) and running 'go mod tidy'.
    # It is still selected at v0.1.0 (as a dependency of a),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_retract_fix_version.txt

    # Commands that update go.mod should fix non-canonical versions in
    # retract directives.
    # Verifies #44494.
    go mod edit -module=rsc.io/quote/v2
    ! go list -m all
    stderr '^go: updates to go.mod needed; to update it:\n\tgo mod tidy$'
    go mod tidy
    go list -m all
    cmp go.mod go.mod.want
    
    # If a retracted version doesn't match the module's major version suffx,
    # an error should be reported.
    ! go mod edit -retract=v3.0.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/token/tokenfile/tokenfile_test.go

    import (
    	"context"
    	"io/ioutil"
    	"os"
    	"reflect"
    	"testing"
    
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    func TestTokenFile(t *testing.T) {
    	auth, err := newWithContents(t, `
    token1,user1,uid1
    token2,user2,uid2
    token3,user3,uid3,"group1,group2"
    token4,user4,uid4,"group2"
    token5,user5,uid5,group5
    token6,user6,uid6,group5,otherdata
    token7,user7,uid7,"group1,group2",otherdata
    `)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    	# TODO(#36460): The hint here is wrong. We should suggest
    	# 'go get -t example.com/b@v0.1.0' instead of 'go mod tidy'.
    stderr '^go: updates to go\.mod needed; to update it:\n\tgo mod tidy$'
    
    [!short] ! go test -c -o $devnull example.com/b
    [!short] stderr '^go: updates to go\.mod needed; to update it:\n\tgo mod tidy$'
    
    go get -t example.com/b@v0.1.0
    go list -test -deps example.com/b
    stdout example.com/c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top