Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for IsBlank (0.1 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	// This may generate new decls for the wrappers, but we
    	// specifically *don't* want to visit those, lest we create
    	// wrappers for wrappers.
    	for _, fn := range typecheck.Target.Funcs {
    		nam := fn.Nname
    		if ir.IsBlank(nam) {
    			continue
    		}
    		sym := nam.Sym()
    
    		symName := sym.Linkname
    		if symName == "" {
    			symName = sym.Pkg.Prefix + "." + sym.Name
    		}
    		symName = s.canonicalize(symName)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            if (StringUtil.isNotBlank(name) && value != null) {
                httpClientPropertyMap.put(name, value);
            }
        }
    
        protected void processRobotsTxt(final String url) {
            if (StringUtil.isBlank(url)) {
                throw new CrawlerSystemException("url is null or empty.");
            }
    
            if (robotsTxtHelper == null || !robotsTxtHelper.isEnabled()) {
                // not support robots.txt
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top