- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 154 for bears (0.04 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
import java.util.TimeZone; import java.util.function.Consumer; import org.apache.lucene.search.TotalHits; import org.codelibs.core.beans.BeanDesc; import org.codelibs.core.beans.Converter; import org.codelibs.core.beans.PropertyDesc; import org.codelibs.core.beans.factory.BeanDescFactory; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.core.io.FileUtil; import org.codelibs.core.lang.StringUtil;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 23.6K bytes - Viewed (0) -
docs/en/docs/history-design-future.md
> What’s the history of this project? It seems to have come from nowhere to awesome in a few weeks [...] Here's a little bit of that history. ## Alternatives I have been creating APIs with complex requirements for several years (Machine Learning, distributed systems, asynchronous jobs, NoSQL databases, etc), leading several teams of developers. As part of that, I needed to investigate, test and use many alternatives.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/converter/SqlDateConverterTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.beans.converter; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.not; import static org.junit.Assert.assertThat; import org.junit.Test; /** * @author higa */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
*/ package org.codelibs.core.beans.util; import static org.codelibs.core.collection.CollectionsUtil.newLinkedHashMap; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.util.Map; import java.util.Map.Entry; import java.util.function.Consumer; import org.codelibs.core.beans.BeanDesc; import org.codelibs.core.beans.PropertyDesc;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/converter/NumberConverterTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.beans.converter; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.not; import static org.junit.Assert.assertThat; import java.sql.Timestamp; import org.junit.Test; /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/RenderDataUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.util; import java.util.Collection; import java.util.List; import java.util.stream.Collectors; import org.codelibs.core.beans.util.BeanUtil; import org.dbflute.Entity; import org.lastaflute.web.response.render.RenderData; public class RenderDataUtil { public static void register(final RenderData data, final String key, final Object value) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.service; import java.util.List; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.pager.BoostDocPager; import org.codelibs.fess.es.config.cbean.BoostDocumentRuleCB;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.service; import java.util.List; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.pager.ReqHeaderPager; import org.codelibs.fess.es.config.cbean.RequestHeaderCB; import org.codelibs.fess.es.config.exbhv.RequestHeaderBhv;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.service; import java.util.List; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.pager.WebAuthPager; import org.codelibs.fess.es.config.cbean.WebAuthenticationCB; import org.codelibs.fess.es.config.exbhv.WebAuthenticationBhv;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Internal.java
}) @IgnoreJRERequirement static long toNanosSaturated(Duration duration) { // Using a try/catch seems lazy, but the catch block will rarely get invoked (except for // durations longer than approximately +/- 292 years). try { return duration.toNanos(); } catch (ArithmeticException tooBig) { return duration.isNegative() ? Long.MIN_VALUE : Long.MAX_VALUE; } } private Internal() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jan 11 14:30:06 UTC 2024 - 2K bytes - Viewed (0)