Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for tid1 (0.06 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 (0)
  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. 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)
  5. 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)
  6. 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)
  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_tidy_old.txt

    # 'go mod tidy' should remove content sums for module versions that aren't
    # in the build list. It should preserve go.mod sums for module versions that
    # are in the module graph though.
    # Verifies golang.org/issue/33008.
    go mod tidy
    ! grep '^rsc.io/quote v1.5.0 h1:' go.sum
    grep '^rsc.io/quote v1.5.0/go.mod h1:' go.sum
    
    -- go.mod --
    module m
    
    go 1.15
    
    require (
    	rsc.io/quote v1.5.2
    	example.com/r v0.0.0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 14 21:04:12 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref_test.go

    func TestNewControllerRef(t *testing.T) {
    	gvk := schema.GroupVersionKind{
    		Group:   "group",
    		Version: "v1",
    		Kind:    "Kind",
    	}
    	obj1 := &metaObj{
    		ObjectMeta: ObjectMeta{
    			Name: "name",
    			UID:  "uid1",
    		},
    	}
    	controllerRef := NewControllerRef(obj1, gvk)
    	if controllerRef.UID != obj1.UID {
    		t.Errorf("Incorrect UID: %s", controllerRef.UID)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top