Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for Deleted (0.27 sec)

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

    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/deleted v0.1.0
    	example.net/deleted v0.1.0 // redundant
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/clean_cache_n.txt

    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    ! exists $GOCACHE/00
    
    ! go clean -cache .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys_test.go

    			file{"file.txt", 9, 0600, false},
    			false,
    		},
    		{
    			"file_cant_exist",
    			`{"Replace": {"deleted": "dummy.txt"}}
    -- deleted/file.txt --
    -- dummy.txt --
    `,
    			"deleted/file.txt",
    			file{},
    			true,
    		},
    		{
    			"deleted",
    			`{"Replace": {"deleted": ""}}
    -- deleted --
    `,
    			"deleted",
    			file{},
    			true,
    		},
    		{
    			"dir_on_disk",
    			`{}
    -- dir/foo.txt --
    `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

            It does not affect the behaviour of proxy.golang.org or the go command.
            Instead we recommend using the retract directive which will be processed by all 3 of the above.
    
            If you have deleted your repo, please recreate it and publish a retraction.
    
            Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. doc/next/9-todo.md

    CL 555597 - optimizes TypeFor (added in accepted proposal https://go.dev/issue/60088) for non-interface types; doesn't seem to need a release note
    a few x/tools CLs deprecated and deleted the experimental golang.org/x/tools/cmd/getgo tool per accepted proposal https://go.dev/issue/60951; an unreleased change and not something that's in scope of Go 1.23 release notes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fsys/fsys.go

    				dirNode = &node{children: make(map[string]*node)}
    				overlay[dir] = dirNode
    			}
    			if childNode.isDeleted() {
    				// Only create one parent for a deleted file:
    				// the directory only conditionally exists if
    				// there are any non-deleted children, so
    				// we don't create their parents.
    				if dirNode.isDir() {
    					dirNode.children[base] = childNode
    				}
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug_lines_test.go

    // then verifies that the statement-marked lines in that file are the same as those in wantStmts
    // These files must all be short because this is super-fragile.
    // "go build" is run in a temporary directory that is normally deleted, unless -test.v
    func testDebugLines(t *testing.T, gcflags, file, function string, wantStmts []int, ignoreRepeats bool) {
    	dumpBytes := compileAndDump(t, file, function, gcflags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. src/cmd/go/script_test.go

    	if err != nil && !os.IsNotExist(err) {
    		t.Fatalf("reading go.sum after -testsum: %v", err)
    	}
    	switch {
    	case os.IsNotExist(err) && gosumIdx >= 0:
    		// go.sum was deleted.
    		rewrite = true
    		archive.Files = append(archive.Files[:gosumIdx], archive.Files[gosumIdx+1:]...)
    	case err == nil && gosumIdx < 0:
    		// go.sum was created.
    		rewrite = true
    		gosumIdx = gomodIdx + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/cover/cover_test.go

    	goldenLines := strings.Split(string(golden), "\n")
    	outLines := strings.Split(out.String(), "\n")
    	// Compare at the line level, stopping at first different line so
    	// we don't generate tons of output if there's an inserted or deleted line.
    	for i, goldenLine := range goldenLines {
    		if i >= len(outLines) {
    			t.Fatalf("output shorter than golden; stops before line %d: %s\n", i+1, goldenLine)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json.go

    	// printed by 'go test' along with an error if the test binary terminates
    	// with an error.
    	bigFailErrorPrefix = []byte("FAIL\t")
    
    	// an === NAME line with no test name, if trailing spaces are deleted
    	emptyName     = []byte("=== NAME")
    	emptyNameLine = []byte("=== NAME  \n")
    
    	updates = [][]byte{
    		[]byte("=== RUN   "),
    		[]byte("=== PAUSE "),
    		[]byte("=== CONT  "),
    		[]byte("=== NAME  "),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top