- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 25 for mathMl (0.04 seconds)
-
src/main/webapp/js/purify.min.js
colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let Ze=null;const Je=R({},["audio","video","img","source","image","track"]);let Qe=null;const et=R({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),tt="http://www.w3.org/1998/Math/MathML",nt="http://www.w3.org/2000/svg",ot="http://www.w...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 22.7K bytes - Click Count (0) -
plugin.xml
<include name="dataformat/commons-codec-*" /> <include name="dataformat/commons-collections4-*" /> <include name="dataformat/commons-compress-*" /> <include name="dataformat/commons-math3-*" /> <include name="dataformat/curvesapi-*" /> <include name="dataformat/orangesignal-csv-*" /> <include name="dataformat/poi-*" /> <include name="dataformat/SparseBitSet-*" />
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 12 06:33:24 GMT 2026 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.util; import java.math.BigDecimal; import java.math.BigInteger; import java.time.LocalDateTime; import java.time.ZonedDateTime; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.List;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
*/ package org.codelibs.fess.crawler.serializer; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; import java.sql.Timestamp; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.HashSet;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:54:09 GMT 2026 - 10.5K bytes - Click Count (3) -
src/main/webapp/js/marked.min.js
{0,3}${l})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}#`),htmlBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}<(?:[a-z].*>|!--)`,"i"),blockquoteBeginRegex:l=>new RegExp(`^ {0,$...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 41.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java
ensureIndexExists(client, indexName); for (int i = 0; i < events.size(); i += BATCH_SIZE) { final List<LogNotificationEvent> batch = events.subList(i, Math.min(i + BATCH_SIZE, events.size())); final BulkRequestBuilder bulkRequest = client.prepareBulk(); for (final LogNotificationEvent event : batch) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
isRunning = (Boolean) scheduler.get("running"); // Exponential backoff: gradually increase sleep time up to 300ms if (count % 5 == 0 && sleepTime < 300) { sleepTime = Math.min((long) (sleepTime * 1.5), 300); } } if (1500 <= count) { logger.info("Time out: Failed to start crawler)"); fail(); // Time Out }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatSession.java
// Ensure trimmed history starts with a user message, not an assistant message if (start < messages.size() && ChatMessage.ROLE_ASSISTANT.equals(messages.get(start).getRole())) { start = Math.max(0, start - 1); } final List<ChatMessage> trimmed = new ArrayList<>(messages.subList(start, messages.size())); messages.clear(); messages.addAll(trimmed);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
return null; } final String omitMarker = "\n...[omitted]...\n"; final int maxSuffixLen = Math.max(0, maxChars / 4); final String suffix = buildSourceTitlesSuffix(msg.getSources(), maxSuffixLen); final int bodyBudget = Math.max(0, maxChars - suffix.length() - omitMarker.length()); if (content.length() <= bodyBudget) { return content + suffix; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.query; import java.math.BigDecimal; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.query.parser.QueryParser; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.6K bytes - Click Count (0)