- Sort Score
- Result 10 results
- Languages All
Results 941 - 950 of 2,210 for default (0.04 sec)
-
cmd/update-notifier.go
line2InColor := fmt.Sprintf(msgLine2Fmt, color.CyanBold(updateString)) // calculate the rectangular box size. maxContentWidth := max(line1Length, line2Length) // termWidth is set to a default one to use when we are // not able to calculate terminal width via OS syscalls termWidth := 25 if width, err := pb.GetTerminalWidth(); err == nil { termWidth = width }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Mar 09 03:07:08 UTC 2024 - 3.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java
protected final List<Rule> ruleList = new ArrayList<>(); /** * Creates a new RuleManagerImpl instance. */ public RuleManagerImpl() { // Default constructor } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.rule.RuleManager#getRule(org.codelibs.fess.crawler.entity.ResponseData) */ /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* caching, pagination, and user interface functionality. * */ public class ViewHelper { /** * Default constructor for ViewHelper. */ public ViewHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(ViewHelper.class); /** Request attribute key for screen width */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
public void tearDown() throws Exception { super.tearDown(); } // Test default constructor public void test_constructor() { PurgeThumbnailJob job = new PurgeThumbnailJob(); assertNotNull(job); assertEquals(30L * 24 * 60 * 60 * 1000L, job.getExpiry()); } // Test getExpiry with default value public void test_getExpiry_default() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/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/test/java/jcifs/util/transport/ResponseTest.java
// MockitoExtension handles this automatically for @Mock fields, but good to be aware. } @Test void testIsReceived() { // Test initial state (should be false by default for a fresh mock) assertFalse(mockResponse.isReceived()); // Simulate received status when(mockResponse.isReceived()).thenReturn(true); assertTrue(mockResponse.isReceived());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/ArtifactRepositoryFactory.java
import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout; @Deprecated public interface ArtifactRepositoryFactory { String DEFAULT_LAYOUT_ID = "default"; String LOCAL_REPOSITORY_ID = "local"; @Deprecated ArtifactRepositoryLayout getLayout(String layoutId) throws UnknownRepositoryLayoutException; @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
triggerRules = "+:root=${VersionedSettingsBranch.fromDslContext().vcsRootId()}:." branchFilter = "+:<default>" } } } }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 27 05:37:08 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
public class FtpAuthenticationHolder { List<FtpAuthentication> authenticationList = new ArrayList<>(); /** * Constructs a new FtpAuthenticationHolder. */ public FtpAuthenticationHolder() { // Default constructor } /** * Adds an FtpAuthentication object to the holder. * @param auth The FtpAuthentication object to add. */ public void add(final FtpAuthentication auth) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
/** * Creates and initializes a new instance of the class using its default constructor. * * @param <T> * The class represented by the {@link Class} object * @param clazz * The {@link Class} object representing the class. Must not be {@literal null}. * @return A new object created by invoking the default constructor * @throws InstantiationRuntimeException
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0)