Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 147 for IsBlank (0.15 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                urlQueueService.offerAll(crawlerContext.sessionId, childList);
            }
        }
    
        protected boolean isValid(final UrlQueue<?> urlQueue) {
            if ((urlQueue == null) || StringUtil.isBlank(urlQueue.getUrl())
                    || (crawlerContext.getMaxDepth() >= 0 && urlQueue.getDepth() > crawlerContext.getMaxDepth())) {
                return false;
            }
    
            // url filter
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            }
        }
    
        protected List<String> getDefaultGroupList() {
            final String value = ComponentUtil.getFessConfig().getSystemProperty("aad.default.groups");
            if (StringUtil.isBlank(value)) {
                return Collections.emptyList();
            }
            return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).collect(Collectors.toList()));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/range.go

    	//	hb: hidden bool
    	//	a, v1, v2: not hidden aggregate, val 1, 2
    
    	a := nrange.X
    	t := a.Type()
    	lno := ir.SetPos(a)
    
    	v1, v2 := nrange.Key, nrange.Value
    
    	if ir.IsBlank(v2) {
    		v2 = nil
    	}
    
    	if ir.IsBlank(v1) && v2 == nil {
    		v1 = nil
    	}
    
    	if v1 == nil && v2 != nil {
    		base.Fatalf("walkRange: v2 != nil while v1 == nil")
    	}
    
    	var body []ir.Node
    	var init []ir.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                }, this::asListHtml);
            }
        }
    
        protected void verifyPassword(final CreateForm form, final VaErrorHook validationErrorLambda) {
            if (form.crudMode == CrudMode.CREATE && StringUtil.isBlank(form.password)) {
                resetPassword(form);
                throwValidationError(messages -> {
                    messages.addErrorsBlankPassword("password");
                }, validationErrorLambda);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                return name.substring(pos + 1);
            }
            return name;
        }
    
        private void executeCommand(final File inputFile, final File outputFile) {
    
            if (StringUtil.isBlank(command)) {
                throw new CrawlerSystemException("command is empty.");
            }
    
            final Map<String, String> params = new HashMap<>();
            params.put("$INPUT_FILE", inputFile.getAbsolutePath());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/go/printer/printer.go

    			// individual lines of /*-style comments
    			p.writeByte('\f', nlimit(n))
    		}
    	}
    }
    
    // Returns true if s contains only white space
    // (only tabs and blanks can appear in the printer's context).
    func isBlank(s string) bool {
    	for i := 0; i < len(s); i++ {
    		if s[i] > ' ' {
    			return false
    		}
    	}
    	return true
    }
    
    // commonPrefix returns the common prefix of a and b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
            return client;
        }
    
        protected List<Pair<String, Pattern>> getClientRuleList(final String value) {
            if (StringUtil.isBlank(value)) {
                return Collections.emptyList();
            }
            return split(value, ",").get(stream -> stream.map(String::trim)//
                    .map(s -> clientRuleCache.computeIfAbsent(s, t -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/order.go

    		return
    	}
    
    	as := s[0].(*ir.AssignStmt)
    	cp := s[1].(*ir.BinaryExpr)
    	if as.Y == nil || as.Y.Op() != ir.OMAKESLICE || ir.IsBlank(as.X) ||
    		as.X.Op() != ir.ONAME || cp.X.Op() != ir.ONAME || cp.Y.Op() != ir.ONAME ||
    		as.X.Name() != cp.X.Name() || cp.X.Name() == cp.Y.Name() {
    		// The line above this one is correct with the differing equality operators:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/convert.go

    // walkConvInterface walks an OCONVIFACE node.
    func walkConvInterface(n *ir.ConvExpr, init *ir.Nodes) ir.Node {
    
    	n.X = walkExpr(n.X, init)
    
    	fromType := n.X.Type()
    	toType := n.Type()
    	if !fromType.IsInterface() && !ir.IsBlank(ir.CurFunc.Nname) {
    		// skip unnamed functions (func _())
    		if fromType.HasShape() {
    			// Unified IR uses OCONVIFACE for converting all derived types
    			// to interface type. Avoid assertion failure in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/stmt.go

    	if n.Y == nil {
    		n.X = AssignExpr(n.X)
    		return
    	}
    
    	lhs, rhs := []ir.Node{n.X}, []ir.Node{n.Y}
    	assign(n, lhs, rhs)
    	n.X, n.Y = lhs[0], rhs[0]
    
    	// TODO(mdempsky): This seems out of place.
    	if !ir.IsBlank(n.X) {
    		types.CheckSize(n.X.Type()) // ensure width is calculated for backend
    	}
    }
    
    func tcAssignList(n *ir.AssignListStmt) {
    	if base.EnableTrace && base.Flag.LowerT {
    		defer tracePrint("tcAssignList", n)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top