- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 3,200 for 1final (0.04 sec)
-
src/main/java/org/codelibs/core/beans/converter/NumberConverter.java
} catch (final ParseException e) { throw new ParseRuntimeException(e); } } @Override public String getAsString(final Object value) { if (value == null) { return null; } return new DecimalFormat(pattern).format(value); } @Override public boolean isTarget(final Class<?> clazz) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/CIFSException.java
* @param cause the cause of this exception */ public CIFSException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a CIFS exception with the specified detail message. * * @param message the detail message */ public CIFSException(final String message) { super(message); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java
*/ public ContainerNotAvailableException(final String componentName, final Throwable cause) { super(componentName + " is not available.", cause); this.componentName = componentName; } /** * Constructor with cause only. * @param cause The cause of the exception. */ public ContainerNotAvailableException(final Throwable cause) { super("Container is not available.");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
/* public void test_storeSynonymFiles() throws Exception { final DictionaryManager dictionaryManager = new DictionaryManager(); final SynonymCreator synonymCreator = new SynonymCreator(); final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); dictionaryManager.store(synonymFile, file1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBProtocolDecodingException.java
*/ public SMBProtocolDecodingException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SMBProtocolDecodingException with the specified detail message. * * @param message the detail message */ public SMBProtocolDecodingException(final String message) { super(message); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/PACDecodingException.java
* @param message the detail message */ public PACDecodingException(final String message) { this(message, null); } /** * Constructs a new PAC decoding exception with the specified cause. * @param cause the cause of the exception */ public PACDecodingException(final Throwable cause) { this(null, cause); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
assertEquals(expect, sortBuilders.get(0).toString().replaceAll("[\s\n]", "")); } private QueryContext assertQueryBuilder(final Class<?> expectedClass, final String expectedQuery, final String text) throws Exception { final QueryContext queryContext = new QueryContext(text, false); final Query query = ComponentUtil.getQueryParser().parse(queryContext.getQueryString());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
assertEquals(2, fessConfig.getAvailableSmbSidType(5)); } private boolean matchesTag(final PrunedTag tag, final String text) throws Exception { final DOMParser parser = new DOMParser(); final String html = "<html><body>" + text + "</body></html>"; final ByteArrayInputStream is = new ByteArrayInputStream(html.getBytes("UTF-8")); parser.parse(new InputSource(is));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
} finally { interpolator.clearAnswers(); } } protected List<ValueSource> createValueSources( final Model model, final File projectDir, final ProjectBuilderConfiguration config) { String timestampFormat = DEFAULT_BUILD_TIMESTAMP_FORMAT; Properties modelProperties = model.getProperties(); if (modelProperties != null) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java
* @param name The name of the script engine. * @param scriptEngine The script engine. */ public void add(final String name, final ScriptEngine scriptEngine) { if (name == null || scriptEngine == null) { throw new IllegalArgumentException("name or scriptEngine is null."); } if (logger.isDebugEnabled()) { logger.debug("Loaded {}", name); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0)