- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,949 for DeVault (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java
* It serves as a data transfer object between the web layer and the crawling * service components. */ public class StartCrawlingForm { /** * Default constructor. */ public StartCrawlingForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
/** * Helper class for sending notifications to various platforms. */ public class NotificationHelper { /** * Default constructor. */ public NotificationHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(NotificationHelper.class); /** Line feed character for message formatting. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
protected FessConfig fessConfig; /** Behavior class for user database operations */ @Resource protected UserBhv userBhv; /** * Default constructor for GroupService. */ public GroupService() { // Default constructor } /** * Retrieves a paginated list of groups based on the provided pager criteria.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionServicePacket.java
*/ public abstract class SessionServicePacket { /** * Default constructor for SessionServicePacket. * Creates a new session service packet instance. */ public SessionServicePacket() { // Default constructor } // session service packet types static final int SESSION_MESSAGE = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Lmhosts.java
import jcifs.smb1.util.LogStream; /** * Lmhosts file handling for NetBIOS name resolution. */ public class Lmhosts { /** * Default constructor for Lmhosts. */ public Lmhosts() { // Default constructor } private static final String FILENAME = Config.getProperty("jcifs.smb1.netbios.lmhosts"); private static final Hashtable TAB = new Hashtable();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
docs/bucket/retention/README.md
# Object Lock and Immutability Guide [](https://slack.min.io) MinIO server allows WORM for specific objects or by configuring a bucket with default object lock configuration that applies default retention mode and retention duration to all objects. This makes objects in the bucket immutable i.e. delete of the version are not allowed until an expiry specified in the bucket's object lock configuration or object retention.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 4K bytes - Viewed (0) -
logger/logger.go
// Default Default logger Default = New(log.New(os.Stdout, "\r\n", log.LstdFlags), Config{ SlowThreshold: 200 * time.Millisecond, LogLevel: Warn, IgnoreRecordNotFoundError: false, Colorful: true, }) // Recorder logger records running SQL into a recorder instance Recorder = traceRecorder{Interface: Default, BeginAt: time.Now()}
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun Jan 12 10:19:28 UTC 2025 - 6.3K bytes - Viewed (0) -
docs/es/docs/tutorial/query-params-str-validations.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
setDefault(Float.class, 1F); setDefault(double.class, 1D); setDefault(Double.class, 1D); setDefault(Class.class, Class.class); } /** * Sets the default value for {@code type}. The default value isn't used in testing {@link * Object#equals} because more than one sample instances are needed for testing inequality. To set
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
doc.put("key", "value"); assertEquals("value", DocumentUtil.getValue(doc, "key", String.class, "default")); doc.put("key", null); assertEquals("default", DocumentUtil.getValue(doc, "key", String.class, "default")); } public void test_list_with_null_elements() { Map<String, Object> doc = new HashMap<>(); List<String> listWithNulls = Arrays.asList("a", null, "b", null, "c");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0)