- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 342 for inherits (0.05 sec)
-
docs/en/docs/advanced/custom-response.md
/// ### `Response` { #response } The main `Response` class, all the other responses inherit from it. You can return it directly. It accepts the following parameters: * `content` - A `str` or `bytes`. * `status_code` - An `int` HTTP status code. * `headers` - A `dict` of strings.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
* * @param id the item ID * @return an optional containing the item if found */ public abstract OptionalEntity<T> get(long id); /** * Inserts a new dictionary item. * * @param item the item to insert */ public abstract void insert(T item); /** * Updates an existing dictionary item. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
System.arraycopy(buffer, tokenOffset, actualToken, 0, largeToken.length); assertArrayEquals(largeToken, actualToken); } @Test @DisplayName("Should correctly inherit from ServerMessageBlock2Request") void testInheritance() { // Then assertTrue(request instanceof ServerMessageBlock2Request); assertTrue(request instanceof ServerMessageBlock2); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
asyncManager.async(() -> { insertLogin(user); }); } /** * Inserts a login record for the given member. * Currently this method does nothing. * * @param member the member to insert a login record for */ protected void insertLogin(final Object member) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
toIndex = mappingItemList.size(); } return new PagingList<>(mappingItemList.subList(offset, toIndex), offset, size, mappingItemList.size()); } /** * Inserts a new character mapping item into the dictionary file. * * @param item the character mapping item to insert */ @Override public synchronized void insert(final CharMappingItem item) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
For example, for Bosnian, it would be: * `docs/bs/docs/index.md` * `docs/bs/mkdocs.yml` The `mkdocs.yml` file will have only the following content: ```YAML INHERIT: ../en/mkdocs.yml ``` The language code would normally be in the <a href="https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes" class="external-link" target="_blank">ISO 639-1 list of language codes</a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
finisher_api.go
"gorm.io/gorm/utils" ) // Create inserts value, returning the inserted data's primary key in value's id func (db *DB) Create(value interface{}) (tx *DB) { if db.CreateBatchSize > 0 { return db.CreateInBatches(value, db.CreateBatchSize) } tx = db.getInstance() tx.Statement.Dest = value return tx.callbacks.Create().Execute(tx) } // CreateInBatches inserts value in batches of batchSize
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
void testInheritance() { netShareEnum = new NetShareEnum(realConfig); assertTrue(netShareEnum instanceof SmbComTransaction); // Test inherited getSubCommand method byte subCommand = netShareEnum.getSubCommand(); assertEquals(SmbComTransaction.NET_SHARE_ENUM, subCommand); } @ParameterizedTest
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0)