- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,713 for Defaults (0.53 sec)
-
android/guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java
* as desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator * pattern</a>. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingBlockingQueue}. * * @author Raimundo Mirisola
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
public String name; /** Version number for optimistic locking. */ public String versionNo; /** * Default constructor for GroupPager. * Initializes the pager with default values for pagination settings. */ public GroupPager() { // Default constructor } /** * Clears all pagination data and search criteria, resetting the pager to its initial state.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
*/ public class PathMapPager implements Serializable { /** * Default constructor. */ public PathMapPager() { // Default constructor } private static final long serialVersionUID = 1L; /** Default page size. */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
* capabilities to the default HTTP handler. This acts as a wrapper, * handling authentication and passing control to the underlying * stream handler. */ public class Handler extends URLStreamHandler { /** * The default HTTP port (<code>80</code>). */ public static final int DEFAULT_HTTP_PORT = 80; /** * Default constructor for SMB1 HTTP URL handler. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapGetOrDefaultTester.java
assertEquals( "getOrDefault(absent, default) should return default", v3(), getMap().getOrDefault(k3(), v3())); } @MapFeature.Require(ALLOWS_NULL_KEYS) @CollectionSize.Require(absent = ZERO) public void testGetOrDefault_presentNull() { initMapWithNullKey(); assertEquals( "getOrDefault(null, default) should return the associated value", getValueForNullKey(),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 4.5K bytes - Viewed (0) -
tests/non_std_test.go
if animal.Name != "amazing horse" { t.Errorf("Update a filed with a default value should occur. But got %v\n", animal.Name) } // When changing a field with a default value with blank value animal.Name = "" DB.Save(&animal) DB.First(&animal, animal.Counter) if animal.Name != "" { t.Errorf("Update a filed to blank with a default value should occur. But got %v\n", animal.Name) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
private static final long serialVersionUID = 1L; /** * Default constructor for file configuration pager. * Creates a new instance with default values. */ public FileConfigPager() { // Default constructor } /** Default page size for pagination */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number for pagination */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
public String versionNo; /** * Default constructor for RelatedQueryPager. * Initializes a new instance with default values for pagination * and related query fields. */ public RelatedQueryPager() { // Default constructor - fields will be initialized to default values } /** * Clears all pager data and resets to default values.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
private static final long serialVersionUID = 1L; /** * Default constructor. */ public ElevateWordPager() { // Default constructor } /** Default page size for pagination */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
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/java/org/codelibs/fess/app/pager/UserPager.java
public class UserPager implements Serializable { /** * Default constructor for UserPager. */ public UserPager() { // Default constructor } private static final long serialVersionUID = 1L; /** Default page size for user list pagination */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number for pagination. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.3K bytes - Viewed (0)