- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 450 for creation (0.04 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
} /** * Get the close flags * * @return the closeFlags */ public final int getCloseFlags() { return this.closeFlags; } /** * 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: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
* href="https://docs.oracle.com/javase/9/docs/api/java/util/Set.html#immutable">{@code Set.of}</a>, * we recommend using <i>these</i> classes instead for this reason (as well as for consistency). * * <h4>Creation</h4> * * <p>Except for logically "abstract" types like {@code ImmutableCollection} itself, each {@code * Immutable} type provides the static operations you need to obtain instances of that type. These * usually include:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
// Test with empty message RuntimeException emptyMessageEx = new RuntimeException(""); assertEquals("", emptyMessageEx.getMessage()); } // Test JSON response creation helper public void test_jsonResponseCreation() { ApiResult.ApiErrorResponse errorResponse = new ApiResult.ApiErrorResponse(); errorResponse.message("Success"); errorResponse.status(Status.OK);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10; /** * Notify when last access time changes */ public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20; /** * Notify when creation time changes */ public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40; /** * Notify when extended attributes change */ public static final int FILE_NOTIFY_CHANGE_EA = 0x80; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
* * @param form the create form containing synonym data * @param hook the validation error hook for handling errors * @return OptionalEntity containing the created synonym item or empty if creation failed */ protected OptionalEntity<SynonymItem> createSynonymItem(final CreateForm form, final VaErrorHook hook) { try { return createSynonymItem(this, form, hook);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
android/guava/src/com/google/common/net/PercentEscaper.java
* @throws IllegalArgumentException if any of the parameters were invalid */ public PercentEscaper(String safeChars, boolean plusForSpace) { // TODO(dbeaumont): Switch to static factory methods for creation now that class is final. // TODO(dbeaumont): Support escapers where alphanumeric chars are not safe. checkNotNull(safeChars); // eager for GWT. // Avoid any misunderstandings about the behavior of this escaper
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
/** * Crawling information ID. */ public String id; /** * Session ID for the crawling session. */ public String sessionId; /** * Creation time of the crawling information. */ public String createdTime; /** * Clears all pagination state and crawling information fields.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableCollection.java
* href="https://docs.oracle.com/javase/9/docs/api/java/util/Set.html#immutable">{@code Set.of}</a>, * we recommend using <i>these</i> classes instead for this reason (as well as for consistency). * * <h4>Creation</h4> * * <p>Except for logically "abstract" types like {@code ImmutableCollection} itself, each {@code * Immutable} type provides the static operations you need to obtain instances of that type. These * usually include:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
// Create URL with custom protocol handler for SMB return new URL(null, urlStr, new jcifs.smb.Handler()); } catch (Exception e) { // Return null if URL creation fails return null; } } @Override public Address getAddress() { return null; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
*/ public LuceneQueryParser(final String f, final Analyzer a) { super(f, a); defaultField = f; } /** * Overrides the field query creation to handle quoted queries specially. * For quoted queries on the default field, creates a phrase query instead of a term query. * * @param field the field to query
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0)