Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 147 for IsBlank (0.27 sec)

  1. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        public void addElevateWord(final String word, final String reading, final String[] tags, final String[] permissions, final Float boost,
                final boolean apply) {
            final String[] readings;
            if (StringUtil.isBlank(reading)) {
                readings = word.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP);
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                    }, hook);
                }
            }
        }
    
        private static String[] splitLine(final String value) {
            if (StringUtil.isBlank(value)) {
                return StringUtil.EMPTY_STRINGS;
            }
            final String[] values = value.split("[\r\n]");
            final List<String> list = new ArrayList<>(values.length);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/walk.go

    	}
    	n.SetTypecheck(1)
    
    	if n.X == nil || n.Y == nil {
    		return n
    	}
    
    	lt := n.X.Type()
    	rt := n.Y.Type()
    	if lt == nil || rt == nil {
    		return n
    	}
    
    	if ir.IsBlank(n.X) {
    		n.Y = typecheck.DefaultLit(n.Y, nil)
    		return n
    	}
    
    	if !types.Identical(lt, rt) {
    		n.Y = typecheck.AssignConv(n.Y, lt, "assignment")
    		n.Y = walkExpr(n.Y, init)
    	}
    	types.CalcSize(n.Y.Type())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/expr.go

    	// the field to the right of the dot,
    	// so s will be non-nil, but an OXDOT
    	// is never a valid struct literal key.
    	if sym == nil || sym.Pkg != types.LocalPkg || key.Op() == ir.OXDOT || sym.IsBlank() {
    		base.Errorf("invalid field name %v in struct initializer", key)
    		return nil
    	}
    
    	if f := Lookdot1(nil, sym, typ, typ.Fields(), 0); f != nil {
    		return ir.NewStructKeyExpr(kv.Pos(), f, kv.Value)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String value = fessConfig.getPurgeByBots();
            String[] botNames;
            if (StringUtil.isBlank(value)) {
                botNames = StringUtil.EMPTY_STRINGS;
            } else {
                botNames = value.split(",");
            }
    
            final List<SearchLog> searchLogList = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createDir(final ItemForm form) {
            validate(form, messages -> {}, () -> asListHtml(form.path));
            if (StringUtil.isBlank(form.name)) {
                throwValidationError(messages -> messages.addErrorsStorageDirectoryNameIsInvalid(GLOBAL), () -> asListHtml(form.path));
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

            .willBeRemovedInGradle9()
            .withUpgradeGuideSection(7, "strict-kotlin-dsl-precompiled-scripts-accessors-by-default")
            .nagUser()
        if (prop.isBlank()) true
        else java.lang.Boolean.parseBoolean(prop)
    }
    
    
    private
    fun configureKotlinCompilerArguments(
        objects: ObjectFactory,
        implicitImports: ImplicitImports,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/html.go

    	}
    	b.PrintHTML(buf)
    }
    
    type htmlBuilder struct {
    	endBlank bool
    	text     []string
    	endFunc  func(string) bool
    }
    
    func (c *htmlBuilder) extend(p *parseState, s line) (line, bool) {
    	if c.endBlank && s.isBlank() {
    		return s, false
    	}
    	t := s.string()
    	c.text = append(c.text, t)
    	if c.endFunc != nil && c.endFunc(t) {
    		return line{}, false
    	}
    	return line{}, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                }
            }
            return isBind;
        }
    
        public OptionalEntity<FessUser> login(final String username, final String password) {
            if (StringUtil.isBlank(fessConfig.getLdapProviderUrl()) || !validate()) {
                return OptionalEntity.empty();
            }
    
            final Hashtable<String, String> env = createSearchEnv(username, password);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top