- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 1,857 for constructs (0.07 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
/** * The new output character sequence for update operations. * When not null, indicates this item has pending updates. */ private String newOutput; /** * Constructs a new CharMappingItem with the specified ID, input sequences, and output sequence. * * @param id the unique identifier for this mapping item
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
private final List<List<Object>> equalityGroups = new ArrayList<>(); private final RelationshipTester.ItemReporter itemReporter; /** Constructs an empty EqualsTester instance */ public EqualsTester() { this(/* itemReporter= */ Item::toString); } EqualsTester(RelationshipTester.ItemReporter itemReporter) { this.itemReporter = checkNotNull(itemReporter); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
/** Locale */ protected final Locale locale; /** Index indicating the current style */ protected int index; /** * Constructs an instance. * * @param locale * Locale */ public DateFormatIterator(final Locale locale) { this.locale = locale; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
/** Locale */ protected final Locale locale; /** Index indicating the current style */ protected int index; /** * Constructs an instance. * * @param locale * Locale */ public DateFormatIterator(final Locale locale) { this.locale = locale; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
+ (sessionKeyBytes == null ? "null" : "<" + sessionKeyBytes.length + " bytes>") + ",flags=0x" + jcifs.util.Hexdump.toHexString(getFlags(), 8) + "]"; } /** * Constructs the LanManager response to the given Type-2 message using * the supplied password. * * @param tc * context to use * @param type2 * The Type-2 message.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
private long creationTime, lastAccessTime, lastWriteTime, changeTime, allocationSize, endOfFile; private boolean directory; private boolean isExtended; /** * Constructs an NT Create AndX response. * * @param config the configuration */ public SmbComNTCreateAndXResponse(final Configuration config) { super(config); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
private final String service; private byte[] password; private int passwordLength; private final CIFSContext ctx; private final ServerData server; /** * Constructs a tree connect AndX request to establish a connection to a shared resource. * * @param ctx the CIFS context containing configuration * @param server the server data containing security information
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
* and does not perform any validation on the input.</p> * * @see Normalizer */ public class HankakuKanaToZenkakuKana implements Normalizer { /** * Constructs a new {@link HankakuKanaToZenkakuKana}. */ public HankakuKanaToZenkakuKana() { // nothing }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/EqualsTester.java
private final List<List<Object>> equalityGroups = new ArrayList<>(); private final RelationshipTester.ItemReporter itemReporter; /** Constructs an empty EqualsTester instance */ public EqualsTester() { this(/* itemReporter= */ Item::toString); } EqualsTester(RelationshipTester.ItemReporter itemReporter) { this.itemReporter = checkNotNull(itemReporter); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
/** Map of keys to arrays of extractors */ protected Map<String, Extractor[]> extractorMap = new HashMap<>(); /** * Constructs a new ExtractorFactory. */ public ExtractorFactory() { // Default constructor } /** * Adds an extractor to the factory for the specified key.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.3K bytes - Viewed (0)