- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 450 for creation (0.7 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
* Get the create action taken by the server * @return the createAction */ public final int getCreateAction() { return this.createAction; } /** * Get the file creation time * @return the creationTime */ public final long getCreationTime() { return this.creationTime; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
CollectionSize.ANY, CollectionFeature.SERIALIZABLE, CollectionFeature.ALLOWS_NULL_QUERIES) .createTestSuite()); return suite; } // Creation tests public void testEmptyBuilder() { ImmutableMap<String, Integer> map = new Builder<String, Integer>().buildOrThrow(); assertEquals(Collections.<String, Integer>emptyMap(), map); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
* * @param sessionId the session identifier * @param serverAddresses available server addresses for multi-channel * @return the created channel group * @throws CIFSException if channel creation fails */ public ChannelGroup createChannels(String sessionId, List<InetAddress> serverAddresses) throws CIFSException { if (sessionId == null || sessionId.isEmpty()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
* * <p>Technically one <i>can</i> create a 128bit IPv6 address with the wire format of a "mapped" * address, as shown above, and transmit it in an IPv6 packet header. However, Java's InetAddress * creation methods appear to adhere doggedly to the original intent of the "mapped" address: all * "mapped" addresses return {@link Inet4Address} objects. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
README.md
``` ### Collection Utilities with Java 21 Support ```java import org.codelibs.core.collection.CollectionsUtil; import java.util.SequencedCollection; // Enhanced collection creation List<String> list = CollectionsUtil.newArrayList(); Map<String, Object> map = CollectionsUtil.newLinkedHashMap(); Set<String> caseInsensitiveSet = new CaseInsensitiveSet<>(); // Java 21 Sequenced Collections support
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
// Verify assertEquals(expectedAttributes, fileBothDirectoryInfo.getAttributes()); } @Test @DisplayName("Test createTime returns correct creation time") void testCreateTime() throws SMBProtocolDecodingException { // Prepare test data byte[] buffer = createValidBuffer("file.txt", "FILE~1.TXT", true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
} @Test void testGetInetAddress() throws UnknownHostException { // Test getInetAddress for correct InetAddress creation mockName = new Name(mockConfig, "TESTHOST", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
// ------------- /** * Creates a new label type. * * @param form the create form * @return HTML response after creation */ @Execute @Secured({ ROLE }) public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE); validate(form, messages -> {}, this::asEditHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
// ------------- /** * Creates a new file configuration. * * @param form the create form * @return HTML response after creation */ @Execute @Secured({ ROLE }) public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE); validate(form, messages -> {}, this::asEditHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// The actual exception handling is tested by ensuring the updater can be created // and properly closed even when errors might occur protwordsFile.reload(null); // Test normal creation and cleanup of ProtwordsUpdater ProtwordsItem testItem = new ProtwordsItem(0, "testWord"); ProtwordsFile.ProtwordsUpdater updater = null; try { // Create the updater successfully
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)