- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for writable (0.04 sec)
-
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
assertEquals(0, exception.getSuppressed().length); } public void test_constructor_withWritableStackTrace() { // Test protected constructor with writable stack trace String message = "Test with writable stack trace"; TestFessSystemException exception = new TestFessSystemException(message, true, true); assertEquals(message, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* * @param message the detail message describing the exception * @param enableSuppression whether suppression is enabled or disabled * @param writableStackTrace whether the stack trace should be writable */ protected FessSystemException(final String message, final boolean enableSuppression, final boolean writableStackTrace) { super(message, null, enableSuppression, writableStackTrace); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_stackTraceForMessageOnlyConstructor() { // Test that stack trace is not writable when using message-only constructor ThumbnailGenerationException exception = new ThumbnailGenerationException("Test message");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/webapp/js/clipboard.min.js
typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function d(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function y(t,e){return(y=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function h(n){var o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sha...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 8.9K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableBiMap.java
} } public static <K, V> ImmutableBiMap<K, V> copyOf(Map<? extends K, ? extends V> map) { if (map instanceof ImmutableBiMap) { @SuppressWarnings("unchecked") // safe since map is not writable ImmutableBiMap<K, V> bimap = (ImmutableBiMap<K, V>) map; return bimap; } if (map.isEmpty()) { return of(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0099=Field({1}) of class({0}) is not a static field. ECL0100=Method({1}) of class({0}) is not a static method. ECL0101=File({0}) is not exist or not readable. ECL0102=File({0}) is not exist or not writable. ECL0103=Type({0}) is an interface not a class. ECL0104=Argument({0}) is not an array. ECL0105=Rethrew {0} as a runtime exception. ECL0106=IOException occurred, because {0} ECL0107=InvalidKeyException occurred, because {0}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
.orElse(false); runtime.registerData("editable", editable); runtime.registerData("editableClass", editable ? StringUtil.EMPTY : "disabled"); runtime.registerData("fesenType", fessConfig.getFesenType()); final String forumLink = systemHelper.getForumLink(); if (StringUtil.isNotBlank(forumLink)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
*/ enum QueryType { /** Boolean query type. */ BOOL, /** DisMax query type. */ DISMAX; } /** * Returns the writeable name of the wrapped query builder. * * @return the writeable name */ @Override public String getWriteableName() { return queryBuilder.getWriteableName(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp
value="<la:message key="labels.crud_button_back" />"> <em class="fa fa-arrow-circle-left"> <la:message key="labels.crud_button_back" /> </button> <c:if test="${editable}"> <button type="submit" class="btn btn-success" name="create" value="<la:message key="labels.crud_button_create" />"> <em class="fa fa-plus"> <la:message key="labels.crud_button_create" /> </button> </c:if>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 10 12:37:20 UTC 2020 - 2.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/escape/ArrayBasedCharEscaperTest.java
assertThat( deletingEscaper.escape( "\tEverything\0 outside the\uD800\uDC00 " + "printable ASCII \uFFFFrange is \u007Fdeleted.\n")) .isEqualTo("Everything outside the printable ASCII range is deleted."); } public void testReplacementPriority() throws IOException { CharEscaper replacingEscaper =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 18 15:41:04 UTC 2025 - 3.6K bytes - Viewed (0)