Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for missingArg (0.22 sec)

  1. src/fmt/print.go

    	return argNum, i + wid, ok
    }
    
    func (p *pp) badArgNum(verb rune) {
    	p.buf.writeString(percentBangString)
    	p.buf.writeRune(verb)
    	p.buf.writeString(badIndexString)
    }
    
    func (p *pp) missingArg(verb rune) {
    	p.buf.writeString(percentBangString)
    	p.buf.writeRune(verb)
    	p.buf.writeString(missingString)
    }
    
    func (p *pp) doPrintf(format string, a []any) {
    	end := len(format)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_replace_old.txt

    stderr '^go: golang\.org/issue46659 imports\n\texample\.com/missingpkg/deprecated: package example\.com/missingpkg/deprecated provided by example\.com/missingpkg at latest version v1\.0\.0 but not at required version v1\.0\.1-beta$'
    
    go mod tidy -e
    
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module golang.org/issue46659
    
    go 1.17
    
    replace example.com/missingpkg v1.0.1-alpha => example.com/missingpkg v1.0.0
    
    require example.com/usemissingpre v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1004 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_usemissingpre_v1.0.0.txt

    This module requires example.com/missingpkg at a prerelease version, which
    is newer than @latest.
    
    -- .mod --
    module example.com/usemissingpre
    
    require example.com/missingpkg v1.0.1-beta
    -- .info --
    {"Version":"v1.0.0"}
    -- use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 280 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_missingpkg_prerelease.txt

    env GO111MODULE=on
    
    ! go list -mod=mod -deps use.go
    stderr '^use.go:4:2: package example.com/missingpkg/deprecated provided by example.com/missingpkg at latest version v1.0.0 but not at required version v1.0.1-beta$'
    
    -- go.mod --
    module m
    
    go 1.14
    
    -- use.go --
    package use
    
    import (
    	_ "example.com/missingpkg/deprecated"
    	_ "example.com/usemissingpre"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 357 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/install_rebuild_removed.txt

    stale mycmd
    
    -- mypkg/x.go --
    package mypkg
    
    -- mypkg/y.go --
    package mypkg
    
    -- mypkg/z.go --
    // +build missingtag
    
    package mypkg
    
    -- mycmd/x.go --
    package main
    func main() {}
    
    -- mycmd/y.go --
    package main
    
    -- mycmd/z.go --
    // +build missingtag
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 688 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_missingpkg_v1.0.1-beta.txt

    The deprecated package is deleted in this version.
    
    -- .mod --
    module example.com/missingpkg
    -- .info --
    {"Version":"v1.0.1-beta"}
    -- lib.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 156 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_missingpkg_v1.0.0.txt

    The deprecated package is present in this version (which is @latest) but
    is deleted in a newer prerelease version.
    
    -- .mod --
    module example.com/missingpkg
    -- .info --
    {"Version":"v1.0.0"}
    -- lib.go --
    package lib
    -- deprecated/deprecated.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 265 bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/build.go

    		haveErrors := false
    		allMissingErrors := true
    		for _, pkg := range pkgs {
    			if pkg.Error == nil {
    				continue
    			}
    			haveErrors = true
    			if missingErr := (*modload.ImportMissingError)(nil); !errors.As(pkg.Error, &missingErr) {
    				allMissingErrors = false
    				break
    			}
    		}
    		if haveErrors && allMissingErrors {
    			latestArgs := make([]string, len(args))
    			for i := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top