Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for series (0.17 sec)

  1. src/main/assemblies/files/fess

    #    -X prop       set non-standard JAVA system property
    #   --prop=val
    #   --prop val     set fess property (i.e.  -Des.<prop>=<val>)
    
    CDPATH=""
    SCRIPT="$0"
    
    # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
    while [ -h "$SCRIPT" ] ; do
      ls=`ls -ld "$SCRIPT"`
      # Drop everything prior to ->
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            text = "123<aaa 123>456<bbb 456>123";
            queries = new String[] { "123", "456" };
            assertEquals("<strong>123</strong><aaa 123><strong>456</strong><bbb 456><strong>123</strong>",
                    viewHelper.replaceHighlightQueries(text, queries));
    
            text = "abc";
            queries = new String[] { "123" };
            assertEquals("abc", viewHelper.replaceHighlightQueries(text, queries));
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedQuery.java

            this.createdTime = value;
        }
    
        public String[] getQueries() {
            checkSpecifiedProperty("queries");
            return queries;
        }
    
        public void setQueries(String[] value) {
            registerModifiedProperty("queries");
            this.queries = value;
        }
    
        public String getTerm() {
            checkSpecifiedProperty("term");
            return convertEmptyToNull(term);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            final Map<String, String[]> map = relatedQueryMap.get(key);
            if (map != null) {
                final String[] queries = map.get(toLowerCase(query));
                if (queries != null) {
                    return queries;
                }
            }
            return StringUtil.EMPTY_STRINGS;
        }
    
        private String toLowerCase(final String term) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

            final String[] queries = getParamValueArray(request, "facet.query");
            if (fields.length == 0 && queries.length == 0) {
                return null;
            }
            final FacetInfo facetInfo = new FacetInfo();
            facetInfo.field = fields;
            facetInfo.query = queries;
            final String sizeStr = request.getParameter("facet.size");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/help.jsp

    		"*" is a multiple character wildcard search.
    		<pre>Fess*</pre>
    		or
    		<pre>Fe?s</pre>
    	</dd>
    	<dt>Range</dt>
    	<dd>
    		Range Queries allow one to match documents whose field(s) values are
    		between the lower and upper bound specified by the Range Query. Range
    		Queries can be inclusive or exclusive of the upper and lower bounds.
    		If you want to find documents whose content_length fields have values
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

    /** 
     * This is a special name for querying the master browser that serves the
     * list of hosts found in "Network Neighborhood".
     */ 
    
        public static final String MASTER_BROWSER_NAME = "\u0001\u0002__MSBROWSE__\u0002";
    
    /**
     * A special generic name specified when connecting to a host for which
     * a name is not known. Not all servers respond to this name.
     */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbTree.java

                        switch( ((SmbComTransaction)request).subCommand & 0xFF ) {
                            case SmbComTransaction.NET_SHARE_ENUM:
                            case SmbComTransaction.NET_SERVER_ENUM2:
                            case SmbComTransaction.NET_SERVER_ENUM3:
                            case SmbComTransaction.TRANS_PEEK_NAMED_PIPE:
                            case SmbComTransaction.TRANS_WAIT_NAMED_PIPE:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

            relatedQueryService.getRelatedQuery(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, copyOp -> {
                    copyOp.excludeNull();
                    copyOp.exclude(Constants.QUERIES);
                });
                form.queries =
                        stream(entity.getQueries()).get(stream -> stream.filter(StringUtil::isNotBlank).collect(Collectors.joining("\n")));
            }).orElse(() -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

            languages: ${{ matrix.language }}
            # If you wish to specify custom queries, you can do so here or in a config file.
            # By default, queries listed here will override any specified in a config file. 
            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
    Others
    - Registered: Fri Mar 01 20:58:10 GMT 2024
    - Last Modified: Wed Jan 19 23:41:02 GMT 2022
    - 2.5K bytes
    - Viewed (1)
Back to top