- Sort Score
- Result 10 results
- Languages All
Results 891 - 900 of 6,993 for public (0.06 sec)
-
src/main/java/org/codelibs/fess/util/UpgradeUtil.java
import org.opensearch.common.xcontent.XContentType; import org.opensearch.core.action.ActionListener; public final class UpgradeUtil { private static final Logger logger = LogManager.getLogger(UpgradeUtil.class); private UpgradeUtil() { } public static boolean uploadResource(final String indexConfigPath, final String indexName, final String path) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojoExecutionException.java
*/ package org.apache.maven.plugin; /** * Base exception. * */ public abstract class AbstractMojoExecutionException extends Exception { protected Object source; protected String longMessage; public AbstractMojoExecutionException(String message) { super(message); } public AbstractMojoExecutionException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java
ruleManager.addRule(index, this); } @Override public String getRuleId() { return ruleId; } public void setRuleId(final String ruleId) { this.ruleId = ruleId; } @Override public ResponseProcessor getResponseProcessor() { return responseProcessor; } public void setResponseProcessor(final ResponseProcessor responseProcessor) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
import org.eclipse.aether.repository.RemoteRepository; /** * @since 3.2.3 */ @Named("default") @Singleton public class MavenRepositorySystem { public static final String DEFAULT_REMOTE_REPO_ID = "central"; public static final String DEFAULT_REMOTE_REPO_URL = "https://repo.maven.apache.org/maven2"; public static final String DEFAULT_LOCAL_REPO_ID = "local"; private final ArtifactHandlerManager artifactHandlerManager;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/AsciiTest.java
private static final String UPPER = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; public void testToLowerCase() { assertEquals(LOWER, Ascii.toLowerCase(UPPER)); assertSame(LOWER, Ascii.toLowerCase(LOWER)); assertEquals(IGNORED, Ascii.toLowerCase(IGNORED)); assertEquals("foobar", Ascii.toLowerCase("fOobaR")); } public void testToUpperCase() { assertEquals(UPPER, Ascii.toUpperCase(LOWER));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
} public TextNormalizeContext maxSymbolTermSize(final int maxSymbolTermSize) { this.maxSymbolTermSize = maxSymbolTermSize; return this; } public TextNormalizeContext duplicateTermRemoved(final boolean duplicateTermRemoved) { this.duplicateTermRemoved = duplicateTermRemoved; return this; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 7.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java
* * @author Kevin Bourrillion * @author Jared Levy * @author Nick Kralevich */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public class ImmutableSetTest extends AbstractImmutableSetTest { @J2ktIncompatible @GwtIncompatible // suite public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest( SetTestSuiteBuilder.using(new ImmutableSetCopyOfGenerator())
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
import org.xml.sax.helpers.DefaultHandler; public class GsaConfigParser extends DefaultHandler { private static final Logger logger = LogManager.getLogger(GsaConfigParser.class); public static final String REGEXP = "regexp:"; public static final String REGEXP_CASE = "regexpCase:"; public static final String REGEXP_IGNORE_CASE = "regexpIgnoreCase:"; public static final String CONTAINS = "contains:";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceTester.java
@GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") public class MapReplaceTester<K, V> extends AbstractMapTester<K, V> { @MapFeature.Require(SUPPORTS_PUT) @CollectionSize.Require(absent = ZERO) public void testReplace_supportedPresent() { try { assertEquals(v0(), getMap().replace(k0(), v3())); expectReplacement(entry(k0(), v3()));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 20:00:30 UTC 2024 - 3.9K bytes - Viewed (0)