Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 65 of 65 for moduledata (0.28 sec)

  1. src/cmd/go/internal/work/exec.go

    	GoFiles      []string // absolute paths to package source files
    	NonGoFiles   []string // absolute paths to package non-Go files
    	IgnoredFiles []string // absolute paths to ignored source files
    
    	ModulePath    string            // module path (may be "" on module error)
    	ModuleVersion string            // module version (may be "" on main module or module error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	if len(li.Token) != 2 || len(lj.Token) != 2 {
    		// Not a known exclude specification.
    		// Fall back to sorting lexicographically.
    		return lineLess(li, lj)
    	}
    	// An exclude specification has two tokens: ModulePath and Version.
    	// Compare module path by string order and version by semver rules.
    	if pi, pj := li.Token[0], lj.Token[0]; pi != pj {
    		return pi < pj
    	}
    	return semver.Compare(li.Token[1], lj.Token[1]) < 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	for _, d := range wf.Use {
    		if d.Path == "" {
    			continue // d is marked for deletion.
    		}
    		modRoot := d.Path
    		if d.ModulePath == "" {
    			missingModulePaths[d.Path] = modRoot
    		}
    	}
    
    	// Clean up and annotate directories.
    	// TODO(matloob): update x/mod to actually add module paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //		Use       []Use
    //		Replace   []Replace
    //	}
    //
    //	type Godebug struct {
    //		Key   string
    //		Value string
    //	}
    //
    //	type Use struct {
    //		DiskPath   string
    //		ModulePath string
    //	}
    //
    //	type Replace struct {
    //		Old Module
    //		New Module
    //	}
    //
    //	type Module struct {
    //		Path    string
    //		Version string
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.language.swift.internal.DefaultSwiftApplication> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultSwiftApplication.java:0)
    Class <org.gradle.language.swift.internal.DefaultSwiftBinary$ModulePath> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultSwiftBinary.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top