Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 269 for sizeof (1.88 sec)

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

                    relatedQueryMap.put(key, map);
                }
                map.put(toLowerCase(entity.getTerm()), entity.getQueries());
            });
            this.relatedQueryMap = relatedQueryMap;
            return relatedQueryMap.size();
        }
    
        protected String getHostKey(final RelatedQuery entity) {
            final String key = entity.getVirtualHost();
            return StringUtil.isBlank(key) ? StringUtil.EMPTY : key;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/RoleTests.java

            return requestBody;
        }
    
        @Override
        protected void checkUpdate() {
            Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", NUM * 2);
            List<String> valueList = getPropList(searchBody, KEY_PROPERTY);
            for (String value : valueList) {
                assertTrue(value.endsWith(NEW_SUFFIX));
            }
        }
    
        @Test
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

        public void testIncludes() throws Exception {
            final CopyOptions option = new CopyOptions();
            assertThat(option.include(BeanNames.hoge()), is(sameInstance(option)));
            assertThat(option.includePropertyNames.size(), is(1));
            assertThat(option.includePropertyNames.get(0), is("hoge"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testExcludes() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/CurlResponse.java

            final List<String> list = headers.get(name.toLowerCase(Locale.ROOT));
            if (list == null) {
                return new String[0];
            }
            return list.toArray(new String[list.size()]);
        }
    
        public String getHeaderValue(final String name) {
            final String[] values = getHeaderValues(name);
            if (values.length == 0) {
                return null;
            }
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

            final List<Map<String, String>> items = JsonPath.from(response).getList("response.settings");
            final int status = JsonPath.from(response).getInt("response.status");
            assertEquals(total, items.size());
            assertEquals(0, status);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/MD4.java

     */
    public  class MD4 extends MessageDigest implements Cloneable
    {
    // MD4 specific object variables
    //...........................................................................
    
        /**
         * The size in bytes of the input block to the tranformation algorithm.
         */
        private static final int BLOCK_LENGTH = 64;       //    = 512 / 8;
    
        /**
         * 4 32-bit words (interim result)
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

        //                                                                            ========
        /**
         * {@inheritDoc} <br>
         * Application Origin Methods:
         * <pre>
         * <span style="font-size: 130%; color: #553000">[Small Helper]</span>
         * o saveInfo() <span style="color: #3F7E5E">// save messages to session</span>
         * o write() <span style="color: #3F7E5E">// write text to specified file</span>
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/cbean/bs/BsUserInfoCB.java

            }
    
            if (_specification != null) {
                builder.setFetchSource(_specification.columnList.toArray(new String[_specification.columnList.size()]), null);
            }
    
            return builder;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsGroupCB.java

            }
    
            if (_specification != null) {
                builder.setFetchSource(_specification.columnList.toArray(new String[_specification.columnList.size()]), null);
            }
    
            return builder;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsBoostDocumentRuleCB.java

            }
    
            if (_specification != null) {
                builder.setFetchSource(_specification.columnList.toArray(new String[_specification.columnList.size()]), null);
            }
    
            return builder;
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
Back to top