Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for Edits (0.03 sec)

  1. src/cmd/fix/doc.go

    or partially updated code even without using the -r flag.
    
    Fix prints the full list of fixes it can apply in its help output;
    to see them, run go tool fix -help.
    
    Fix does not make backup copies of the files that it edits.
    Instead, use a version control system's “diff” functionality to inspect
    the changes that fix makes before committing them.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. cmd/tier-handlers.go

    	case storageclass.STANDARD, storageclass.RRS:
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errTierReservedName), r.URL)
    		return
    	}
    
    	// Refresh from the disk in case we had missed notifications about edits from peers.
    	if err := globalTierConfigMgr.Reload(ctx, objAPI); err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	err = globalTierConfigMgr.Add(ctx, cfg, ignoreInUse)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/workcmd/edit.go

    	if len(workedits) > 0 {
    		for _, edit := range workedits {
    			edit(workFile)
    		}
    	}
    
    	workFile.SortBlocks()
    	workFile.Cleanup() // clean file after edits
    
    	// Note: No call to modload.UpdateWorkFile here.
    	// Edit's job is only to make the edits on the command line,
    	// not to apply the kinds of semantic changes that
    	// UpdateWorkFile does (or would eventually do, if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/amd64/versions_test.go

    			// Only really need to make the first byte faulting, but might
    			// as well make all the bytes faulting.
    			virtualEdits[addr+uint64(i)] = true
    		}
    	}
    
    	// Figure out where in the binary the edits must be done.
    	physicalEdits := map[uint64]bool{}
    	if e, err := elf.Open(src); err == nil {
    		for _, sec := range e.Sections {
    			vaddr := sec.Addr
    			paddr := sec.Offset
    			size := sec.Size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. doc/README.md

    ```
    go run golang.org/x/website/cmd/golangorg@latest -goroot=..
    ```
    
    Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits.
    
    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    As a release cycle nears completion, run `relnote todo` to get a list of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    // user can choose to apply to their code. Usually the SuggestedFix is
    // meant to fix the issue flagged by the diagnostic.
    //
    // The TextEdits must not overlap, nor contain edits for other packages.
    type SuggestedFix struct {
    	// A description for this suggested fix to be shown to a user deciding
    	// whether to accept it.
    	Message   string
    	TextEdits []TextEdit
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. code_of_conduct.md

    licensing terms applying to the Project developments.
    
    Project maintainers have the right and responsibility to remove, edit, or
    reject comments, commits, code, wiki edits, issues, and other contributions
    that are not aligned to this Code of Conduct, or to ban temporarily or
    permanently any contributor for other behaviors that they deem inappropriate,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_edit.txt

    # Test that go mod edits and related mod flags work.
    # Also test that they can use a dummy name that isn't resolvable. golang.org/issue/24100
    
    # go mod init
    ! go mod init
    stderr 'cannot determine module path'
    ! exists go.mod
    
    go mod init x.x/y/z
    stderr 'creating new go.mod: module x.x/y/z'
    cmpenv go.mod $WORK/go.mod.init
    
    ! go mod init
    cmpenv go.mod $WORK/go.mod.init
    
    # go mod edits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/settings.go

    			UserConfig: (i != 0),
    		}
    	}
    	// Mark the last matching config as current
    	if lastMatch >= 0 {
    		result[lastMatch].Current = true
    	}
    	return result
    }
    
    // editSettings edits settings by applying fn to them.
    func editSettings(fname string, fn func(s *settings) error) error {
    	settings, err := readSettings(fname)
    	if err != nil {
    		return err
    	}
    	if err := fn(settings); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        }
    
        if (mostRecentTrimFailed || mostRecentRebuildFailed) {
          // The OS has become our enemy! If the trim job failed, it means we are storing more data than
          // requested by the user. Do not allow edits so we do not go over that limit any further. If
          // the journal rebuild failed, the journal writer will not be active, meaning we will not be
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top