Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 532 for vers (0.04 sec)

  1. src/go/build/constraint/vers.go

    Jes Cok <******@****.***> 1695442540 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query_test.go

    	query   string
    	current string
    	allow   string
    	vers    string
    	err     string
    }{
    	{path: queryRepo, query: "<v0.0.0", vers: "v0.0.0-pre1"},
    	{path: queryRepo, query: "<v0.0.0-pre1", err: `no matching versions for query "<v0.0.0-pre1"`},
    	{path: queryRepo, query: "<=v0.0.0", vers: "v0.0.0"},
    	{path: queryRepo, query: ">v0.0.0", vers: "v0.0.1"},
    	{path: queryRepo, query: ">=v0.0.0", vers: "v0.0.0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/debug/dwarf/unit.go

    		if b.err != nil {
    			return nil, b.err
    		}
    		for n == 0 {
    			n, u.is64 = b.unitLength()
    		}
    		dataOff := b.off
    		vers := b.uint16()
    		if vers < 2 || vers > 5 {
    			b.error("unsupported DWARF version " + strconv.Itoa(int(vers)))
    			break
    		}
    		u.vers = int(vers)
    		if vers >= 5 {
    			u.utype = b.uint8()
    			u.asize = int(b.uint8())
    		}
    		var abbrevOff uint64
    		if u.is64 {
    			abbrevOff = b.uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/mod.go

    // The caller is assumed to have checked that ModIsValid(path, vers) is true.
    func ModIsPrefix(path, vers string) bool {
    	if IsToolchain(path) {
    		if path == "toolchain" {
    			return IsLang(FromToolchain(vers))
    		}
    		return IsLang(vers)
    	}
    	// Semver
    	dots := 0
    	for i := 0; i < len(vers); i++ {
    		switch vers[i] {
    		case '-', '+':
    			return false
    		case '.':
    			dots++
    			if dots >= 2 {
    				return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/debug/dwarf/typeunit.go

    			b.error("type unit length overflow")
    			return b.err
    		}
    		hdroff := b.off
    		vers := int(b.uint16())
    		if vers != 4 {
    			b.error("unsupported DWARF version " + strconv.Itoa(vers))
    			return b.err
    		}
    		var ao uint64
    		if !dwarf64 {
    			ao = uint64(b.uint32())
    		} else {
    			ao = b.uint64()
    		}
    		atable, err := d.parseAbbrev(ao, vers)
    		if err != nil {
    			return err
    		}
    		asize := b.uint8()
    		sig := b.uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/addmod.go

    			exitCode = 1
    			continue
    		}
    		path, vers, dir := f[0], f[1], f[2]
    		mod, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".mod"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    			continue
    		}
    		info, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".info"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/list.go

    			needFullGraph = true
    			if !HasModRoot() {
    				base.Fatalf("go: cannot match %q: %v", arg, ErrNoModRoot)
    			}
    			continue
    		}
    		if path, vers, found := strings.Cut(arg, "@"); found {
    			if vers == "upgrade" || vers == "patch" {
    				if _, ok := rs.rootSelected(path); !ok || rs.pruning == unpruned {
    					needFullGraph = true
    					if !HasModRoot() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/README

    requiring specific network servers and also to make them 
    significantly faster.
    
    A small go get'able test module can be added here by running
    
    	cd cmd/go/testdata
    	go run addmod.go path@vers
    
    where path and vers are the module path and version to add here.
    
    For interactive experimentation using this set of modules, run:
    
    	cd cmd/go
    	go test -proxy=localhost:1234 &
    	export GOPROXY=http://localhost:1234/mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/DialectVersion.java

            EnumSet<DialectVersion> vers = EnumSet.noneOf(DialectVersion.class);
            for ( DialectVersion ver : values() ) {
    
                if ( min != null && !ver.atLeast(min) ) {
                    continue;
                }
    
                if ( max != null && !ver.atMost(max) ) {
                    continue;
                }
    
                vers.add(ver);
            }
            return vers;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  10. cmd/mrf.go

    			if u.scanMode != 0 {
    				scan = u.scanMode
    			}
    			if u.object == "" {
    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    					healObject(u.bucket, u.object, u.versionID, scan)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top