- Sort Score
- Result 10 results
- Languages All
Results 2061 - 2070 of 2,289 for projectId (0.06 sec)
-
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} catch (final Exception e) { logger.debug("Failed to access {}", key, e); } return 0L; } }); protected FessFunctions() { // nothing } public static Boolean labelExists(final String value) { return LaRequestUtil.getOptionalRequest().map(req -> { @SuppressWarnings("unchecked")
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsGroupCQ.java
import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder; /** * @author ESFlute (using FreeGen) */ public abstract class BsGroupCQ extends EsAbstractConditionQuery { protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 20K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/ByteSourceTest.java
} suite.addTestSuite(ByteSourceTest.class); return suite; } private static final byte[] bytes = newPreFilledByteArray(10000); private TestByteSource source; @Override protected void setUp() throws Exception { source = new TestByteSource(bytes); } public void testOpenBufferedStream() throws IOException { InputStream in = source.openBufferedStream();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 15.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java
/** */ public class VersionTest extends AbstractVersionTest { private final ModelVersionParser modelVersionParser = new DefaultModelVersionParser(new GenericVersionScheme()); protected Version newVersion(String version) { return modelVersionParser.parseVersion(version); } @Test void testEmptyVersion() { assertOrder(X_EQ_Y, "0", ""); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.1K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
private final OffsetAttribute offsetAttr = addAttribute(OffsetAttribute.class); private final PositionIncrementAttribute posIncAttr = addAttribute(PositionIncrementAttribute.class); protected NGramSynonymTokenizer(final int n, final String delimiters, final boolean expand, final boolean ignoreCase, final SynonymLoader synonymLoader) { this.n = n; this.delimiters = delimiters;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassUtilTest.java
/* * Copyright 2012-2024 CodeLibs Project and the Others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java
} /** * Validate the specified settings. * * @param settings The settings to validate, must not be {@code null}. * @param isProjectSettings Boolean indicating if the validation is for project settings or user / installation settings. * @return The list of problems that were encountered, must not be {@code null}. */ @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/ElevateWordSettingsTest.java
/* * Copyright 2012-2024 CodeLibs Project and the Others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
import javax.net.ssl.SSLParameters import javax.net.ssl.SSLSession import javax.net.ssl.SSLSocket /** An [SSLSocket] that delegates all calls. */ abstract class DelegatingSSLSocket(protected val delegate: SSLSocket?) : SSLSocket() { @Throws(IOException::class) override fun shutdownInput() { delegate!!.shutdownInput() } @Throws(IOException::class) override fun shutdownOutput() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
* @author higa */ public abstract class ClassUtil { /** ラッパー型からプリミティブ型へのマップ */ protected static final Map<Class<?>, Class<?>> wrapperToPrimitiveMap = newHashMap(); /** プリミティブ型からラッパー型へのマップ */ protected static final Map<Class<?>, Class<?>> primitiveToWrapperMap = newHashMap(); /** プリミティブ型の名前からクラスへのマップ */ protected static final Map<String, Class<?>> primitiveNameToClassMap = newHashMap(); static {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 27.5K bytes - Viewed (0)