- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 409 for modifica (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
* Creates a new {@link StopwordsFile} instance. * * @param id The unique identifier for the dictionary file. * @param path The file path of the dictionary. * @param timestamp The last modified timestamp of the file. * @return A new {@link StopwordsFile} associated with the dictionary manager. */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/EditForm.java
/** * The version number of the web configuration for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the configuration hasn't been modified by another process. */ @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
* * @param builder the XContentBuilder to use for building content * @param params the parameters to use during content building * @return the modified XContentBuilder * @throws IOException if an IO error occurs during building */ XContentBuilder apply(XContentBuilder builder, ToXContent.Params params) throws IOException; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
* This class provides functionality to map MIME types to file types and * retrieve appropriate file type classifications for documents during indexing. * * The mappings are loaded from configuration and can be dynamically modified * at runtime. When a MIME type is not found in the mapping, a default value * is returned. */ public class FileTypeHelper { /** Logger instance for this class */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashingTest.java
import com.google.common.testing.EqualsTester; import com.google.common.testing.NullPointerTester; import com.google.common.util.concurrent.AtomicLongMap; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Locale; import java.util.Random; import junit.framework.TestCase;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
assertEquals(testByte, buffer[i], "Byte at position " + i + " was modified"); } // Check bytes after encoded area for (int i = startIndex + EXPECTED_SIZE; i < buffer.length; i++) { assertEquals(testByte, buffer[i], "Byte at position " + i + " was modified"); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
protected String id; /** The file path of this dictionary. */ protected String path; /** The timestamp when this dictionary file was created or last modified. */ protected Date timestamp; /** * Creates a new DictionaryFile with the specified parameters. * * @param id the unique identifier for this dictionary file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
} /** * Checks if a value represents an occurrence-based search modifier. * Currently supports "allintitle" and "allinurl" modifiers. * * @param value the value to check * @return true if the value is an occurrence modifier, false otherwise */ protected boolean isOccurrence(final String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ObjectArrays.java
* * <p>This method returns the elements in the order they are returned by the collection's * iterator. * * <p>TODO(kevinb): support concurrently modified collections? * * @param c the collection for which to return an array of elements * @param array the array in which to place the collection elements
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/en/docs/tutorial/response-status-code.md
* **`300 - 399`** are for "Redirection". Responses with these status codes may or may not have a body, except for `304`, "Not Modified", which must not have one. * **`400 - 499`** are for "Client error" responses. These are the second type you would probably use the most. * An example is `404`, for a "Not Found" response.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4K bytes - Viewed (0)