Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for stemmer (0.56 sec)

  1. src/cmd/go/internal/modfetch/codehost/codehost.go

    // in the Tags method's Origin calculation.
    // We can safely ignore tags that are not look like pseudo-versions,
    // because ../coderepo.go's (*codeRepo).Versions ignores them too.
    // We can also ignore non-semver tags, but we have to include semver
    // tags with extra suffixes, because the pseudo-version base finder uses them.
    func isOriginTag(tag string) bool {
    	// modfetch.(*codeRepo).Versions uses Canonical == tag,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/cache.go

    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/modfetch/codehost"
    	"cmd/go/internal/par"
    	"cmd/go/internal/robustio"
    	"cmd/internal/telemetry"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    func cacheDir(ctx context.Context, path string) (string, error) {
    	if err := checkCacheDir(ctx); err != nil {
    		return "", err
    	}
    	enc, err := module.EscapePath(path)
    	if err != nil {
    		return "", err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    	"runtime"
    	"slices"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/par"
    	"cmd/go/internal/web"
    
    	"golang.org/x/mod/semver"
    )
    
    // LocalGitRepo is like Repo but accepts both Git remote references
    // and paths to repositories on the local file system.
    func LocalGitRepo(ctx context.Context, remote string) (Repo, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git_test.go

    				Time:    time.Date(2018, 4, 17, 20, 00, 32, 0, time.UTC),
    				Tags:    []string{"v2.0.2"},
    			},
    		},
    		{
    			repo: gitrepo1,
    			rev:  "v2.3.4", // badly-named branch (semver should be a tag)
    			info: &RevInfo{
    				Name:    "76a00fb249b7f93091bc2c89a789dab1fc1bc26f",
    				Short:   "76a00fb249b7",
    				Version: "76a00fb249b7f93091bc2c89a789dab1fc1bc26f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String DEFAULT_SUGGEST_PURGE_DAY = "30";
    
        public static final String DEFAULT_PURGE_BY_BOTS =
                "Crawler,crawler,Bot,bot,Slurp,Yeti,Baidu,Steeler,ichiro,hotpage,Feedfetcher,ia_archiver,Y!J-BRI,Google Desktop,Seznam,Tumblr,YandexBot,Chilkat,CloudFront,Mediapartners,MSIE 6";
    
        public static final String DEFAULT_FROM_EMAIL = "Administrator <root@localhost>";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/workcmd/edit.go

    		}
    	})
    }
    
    // allowedVersionArg returns whether a token may be used as a version in go.mod.
    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

                <pgp value="3CAC6E7DC43343FF75ECBAC27E6EB7BB6A7712DC"/>
             </artifact>
          </component>
          <component group="net.swiftzer.semver" name="semver" version="1.1.1">
             <artifact name="semver-1.1.1.jar">
                <sha256 value="757eeb1c6703b81fa3bb6bc2eae7a5fe6ddac5d833b977aa1ce08979d7c2de5a" reason="Artifact is not signed"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/edit.go

    }
    
    // allowedVersionArg returns whether a token may be used as a version in go.mod.
    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top