Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 5,137 for aString (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java

                Map<String, String> featureMap = newHashMap();
                featureMap.put("http://xml.org/sax/features/namespaces", "false");
                xpathTransformer.setFeatureMap(featureMap);
                Map<String, String> propertyMap = newHashMap();
                xpathTransformer.setPropertyMap(propertyMap);
                Map<String, String> childUrlRuleMap = newHashMap();
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Mar 15 06:52:00 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedContent.java

        /** content */
        protected String content;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** sortOrder */
        protected Integer sortOrder;
    
        /** term */
        protected String term;
    
        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
        protected Long updatedTime;
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  3. tests/table_test.go

    		t.Errorf("Table with escape character, got %v", r.Statement.SQL.String())
    	}
    
    	r = dryDB.Table("`people`").Table("`user`").Find(&User{}).Statement
    	if !regexp.MustCompile("SELECT \\* FROM `user`").MatchString(r.Statement.SQL.String()) {
    		t.Errorf("Table with escape character, got %v", r.Statement.SQL.String())
    	}
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Mon Jul 21 02:46:58 GMT 2025
    - 12.7K bytes
    - Click Count (0)
  4. tests/query_test.go

    		t.Fatalf("Build NOT condition, but got %v", result.Statement.SQL.String())
    	}
    
    	result = dryDB.Not(map[string]interface{}{"name": []string{}}).Find(&User{})
    	if !regexp.MustCompile("SELECT \\* FROM .*users.* WHERE .*name.* IS NOT NULL").MatchString(result.Statement.SQL.String()) {
    		t.Fatalf("Build NOT condition, but got %v", result.Statement.SQL.String())
    	}
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Tue Jul 22 06:21:04 GMT 2025
    - 51K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/core/exception/ClSQLException.java

         * @param sqlState
         *            SQL state
         * @param vendorCode
         *            Vendor code
         * @param sql
         *            SQL string
         */
        public ClSQLException(final String messageCode, final Object[] args, final String sqlState, final int vendorCode, final String sql) {
            this(messageCode, args, sqlState, vendorCode, null, sql);
        }
    
        /**
         * Creates a {@link ClSQLException}.
         *
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java

        // _/_/_/_/_/_/_/_/_/_/
    
        protected Map<String, List<Pair<String, String>>> responseHeaderMap = new HashMap<>();
    
        protected List<Pair<String, String>> defaultResponseHeaders;
    
        public FessActionAdjustmentProvider(final FessConfig fessConfig) {
            parseResponseHeaderConfig(fessConfig.getResponseHeaders());
        }
    
        private void parseResponseHeaderConfig(final String value) {
            if (StringUtil.isBlank(value)) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java

        protected Float boost;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** maxSize */
        protected Integer maxSize;
    
        /** query */
        protected String query;
    
        /** term */
        protected String term;
    
        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
        protected Long updatedTime;
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/exbhv/SearchLogBhv.java

                            final String[] values = (String[]) e.getValue();
                            for (final String v : values) {
                                result.getSearchFieldLogList().add(new Pair<>(e.getKey(), v));
                            }
                        } else if (e.getValue() instanceof List) {
                            final List<String> values = (List<String>) e.getValue();
                            for (final String v : values) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

            String[] words = new String[] { "検索", "エンジン" };
            String[][] readings = new String[][] { new String[] { "kensaku" }, new String[] { "enjin" } };
            String[] fields = new String[] { "content" };
            String[] tags = new String[] { "tag1" };
            String[] roles = new String[] { "role1" };
            String[] langs = new String[] { "ja" };
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 12.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

    public class SynonymItem extends DictionaryItem {
        /** The original input words. */
        private final String[] inputs;
    
        /** The original output synonyms. */
        private final String[] outputs;
    
        /** The new input words, if updated. */
        private String[] newInputs;
    
        /** The new output synonyms, if updated. */
        private String[] newOutputs;
    
        /**
         * Constructs a new synonym item.
         *
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 6K bytes
    - Click Count (0)
Back to Top