- Sort Score
- Result 10 results
- Languages All
Results 3011 - 3020 of 6,682 for republic (0.08 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractor.java
/** * Extractor implementation for LHA. * * @author shinsuke * */ public class LhaExtractor extends AbstractExtractor { private static final Logger logger = LoggerFactory.getLogger(LhaExtractor.class); protected long maxContentSize = -1; @Override public ExtractData getText(final InputStream in, final Map<String, String> params) { if (in == null) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java
} public boolean isVerbose() { return verbose; } public boolean isQuiet() { return quiet; } public boolean isShowErrors() { return showErrors; } public Properties getUserProperties() { return userProperties; } public Properties getSystemProperties() { return systemProperties; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
public String getClassifier() { return classifier; } @Override public String getExtension() { return extension; } @Override public String getType() { return type; } public String getCoordinatesString() { return coordinateString;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 9.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java
} @Override public Model injectProfile( Model model, Profile profile, ModelBuildingRequest request, ModelProblemCollector problems) { return injectProfiles(model, Collections.singletonList(profile), request, problems); } @Override public Model injectProfiles(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyExecutionListener.java
} @Override public void projectDiscoveryStarted(ExecutionEvent event) { dispatcher.onEvent(event); delegate.projectDiscoveryStarted(event); } @Override public void sessionStarted(ExecutionEvent event) { dispatcher.onEvent(event); delegate.sessionStarted(event); } @Override public void sessionEnded(ExecutionEvent event) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java
import junit.framework.TestCase; /** * Tests for {@link StandardSystemProperty}. * * @author Kurt Alfred Kluever */ @GwtIncompatible public class StandardSystemPropertyTest extends TestCase { public void testGetKeyMatchesString() { for (StandardSystemProperty property : StandardSystemProperty.values()) { String fieldName = property.name();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 10 08:40:05 UTC 2023 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/CreateContextRequest.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 - 1004 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResult.java
import java.util.Collections; import java.util.List; public class SuggestWriterResult { protected List<Throwable> failures = Collections.synchronizedList(new ArrayList<>()); public void addFailure(final Throwable t) { failures.add(t); } public boolean hasFailure() { return !failures.isEmpty(); } public List<Throwable> getFailures() { return failures; }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java
public ColumnInfo columnCreatedTime() { return _columnCreatedTime; } public ColumnInfo columnDepth() { return _columnDepth; } public ColumnInfo columnDescription() { return _columnDescription; } public ColumnInfo columnExcludedDocUrls() { return _columnExcludedDocUrls; } public ColumnInfo columnExcludedUrls() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/IntMathTest.java
*/ @GwtCompatible(emulated = true) public class IntMathTest extends TestCase { public void testMaxSignedPowerOfTwo() { assertTrue(IntMath.isPowerOfTwo(IntMath.MAX_SIGNED_POWER_OF_TWO)); // Extra work required to make GWT happy. long value = IntMath.MAX_SIGNED_POWER_OF_TWO * 2L; assertFalse(IntMath.isPowerOfTwo((int) value)); } public void testCeilingPowerOfTwo() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 23.1K bytes - Viewed (0)