- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 343 for voir (0.02 seconds)
-
docs/fr/llm-prompt.md
2) For headings that are instructions written in imperative in English (e.g. “Go check …”), keep them in imperative in French, using the formal grammar (e.g. «Allez voir …»). 3) Keep heading punctuation as in the source. In particular, keep occurrences of literal « - » (space-hyphen-space) as « - » (the existing French docs use a hyphen here). ### French instructions about technical terms
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 10:41:43 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
return __modifiedProperties.getPropertyNames(); } public void mymodifyProperty(String propertyName) { registerModifiedProperty(propertyName); } public void mymodifyPropertyCancel(String propertyName) { __modifiedProperties.remove(propertyName); } public void clearModifiedInfo() { __modifiedProperties.clear(); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 10.9K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
*/ public class XmlUtilTest extends PlainTestCase { public void test_escapeXml_null() { // Test null input assertEquals(StringUtil.EMPTY, XmlUtil.escapeXml(null)); } public void test_escapeXml_empty() { // Test empty string assertEquals("", XmlUtil.escapeXml("")); } public void test_escapeXml_basic() { // Test basic XML escapingCreated: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
*/ public void addCookieNameMapping(final String cookieName, final String roleName) { if (cookieNameMap == null) { cookieNameMap = new HashMap<>(); } cookieNameMap.put(cookieName, roleName); } /** * Sets the cached cipher. * @param cipher The cached cipher. */ public void setCipher(final CachedCipher cipher) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15.1K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlingParameterUtilTest.java
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 14.6K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ModelTest.java
assertNull(model.getBuild()); } @Test void testEqualsNullSafe() { assertNotEquals(null, new Model()); new Model().equals(new Model()); } @Test void testEqualsIdentity() { Model thing = new Model(); assertEquals(thing, thing); } @Test void testToStringNullSafe() { assertNotNull(new Model().toString()); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 08:09:30 GMT 2025 - 2.4K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
} @Test public void testSingleArgumentConstructor() { CurlRequest request = new CurlRequest(Method.POST); assertEquals(Method.POST, request.method()); assertEquals("UTF-8", request.encoding()); assertEquals(1024 * 1024, request.threshold()); assertNull(request.proxy()); assertNull(request.body()); } @TestCreated: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Mon Nov 24 03:10:07 GMT 2025 - 20.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:45:32 GMT 2025 - 46.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
*/ @NullUnmarked public class MoreExecutorsTest extends JSR166TestCase { private static final Runnable EMPTY_RUNNABLE = new Runnable() { @Override public void run() {} }; public void testDirectExecutorServiceServiceInThreadExecution() throws Exception { ListeningExecutorService executor = newDirectExecutorService(); ThreadLocal<Integer> threadLocalCount =Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 12 00:25:21 GMT 2025 - 26.5K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
private StandardCrawlerContainer container; private ZipExtractor zipExtractor; private TarExtractor tarExtractor; @Override protected void setUp() throws Exception { super.setUp(); container = new StandardCrawlerContainer(); container.singleton("archiveStreamFactory", ArchiveStreamFactory.class)Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 12.6K bytes - Click Count (0)