- Sort Score
- Result 10 results
- Languages All
Results 1431 - 1440 of 2,200 for _default (0.05 sec)
-
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
/** The dictionary manager. */ @Resource protected DictionaryManager dictionaryManager; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */ public KuromojiService() { // do nothing } /** * Get a list of Kuromoji items. * * @param dictId The dictionary ID.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
private int maxReadWriteSize; private int maxFragmentedSize; /** * Create new RDMA negotiation response */ public RdmaNegotiateResponse() { // Initialize with default values this.status = 0; // Success this.selectedVersion = 0x0100; // SMB Direct 1.0 this.creditsGranted = 0; this.maxReceiveSize = RdmaCapabilities.DEFAULT_MAX_RECEIVE_SIZE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java
*/ public static final String UTF_8 = "UTF-8"; /** * A constant for UTF-8 charset. */ public static final Charset UTF_8_CHARSET = StandardCharsets.UTF_8; /** * The default charset. */ public static final Charset DEFAULT_CHARSET; /** * The ISO date-time format. */ public static final String ISO_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
/** Flag for IDN conversion. */ protected int flag = 0; /** Encoding for URL decoding. */ protected String encoding = "UTF-8"; /** * Creates a new IdnDnsResolver instance with default settings. */ public IdnDnsResolver() { super(); } /** * Resolves the given host name to an array of IP addresses.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
cmd/iam.go
case isOwnerDerived: // All actions are allowed by default and no policy evaluation is // required. case roleArn != "": arn, err := arn.Parse(roleArn) if err != nil { iamLogIf(GlobalContext, fmt.Errorf("error parsing role ARN %s: %v", roleArn, err)) return false } svcPolicies = newMappedPolicy(sys.rolesMap[arn]).toSlice() default: // Check policy for parent user of service account.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 75.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
assertArrayEquals(testHashAlgos, context.getHashAlgos()); assertArrayEquals(testSalt, context.getSalt()); } @Test @DisplayName("Should create empty context with default constructor") void testDefaultConstructor() { // Act context = new PreauthIntegrityNegotiateContext(); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
cmd/common-main.go
if value := env.Get(config.EnvBrowserLoginAnimation, "on"); value != "" { os.Setenv("CONSOLE_ANIMATED_LOGIN", value) } // Pass on the session duration environment variable, else we will default to 12 hours if valueSts := env.Get(config.EnvMinioStsDuration, ""); valueSts != "" { os.Setenv("CONSOLE_STS_DURATION", valueSts) } else if valueSession := env.Get(config.EnvBrowserSessionDuration, ""); valueSession != "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
public class IntervalControlHelper { /** Flag indicating whether the crawler is currently running */ protected volatile boolean crawlerRunning = true; /** * Default constructor. */ public IntervalControlHelper() { // Default constructor } /** Wait time in milliseconds when crawler is not running */ protected long crawlerWaitMillis = 10000;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
* It supports both LTSV and ECS log formats. * */ public class ActivityHelper { /** * Default constructor. */ public ActivityHelper() { // Default constructor } /** * The logger. */ protected Logger logger = null; /** * The logger name. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSourceTest.java
import junit.framework.TestSuite; import org.jspecify.annotations.NullUnmarked; /** * Tests for the default implementations of {@code CharSource} methods. * * @author Colin Decker */ @NullUnmarked public class CharSourceTest extends IoTestCase { @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors. public static TestSuite suite() { TestSuite suite = new TestSuite();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 11.5K bytes - Viewed (0)