Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 332 for inherits (0.08 sec)

  1. src/test/java/jcifs/internal/RequestTest.java

            // Then
            assertTrue(CommonServerMessageBlockRequest.class.isAssignableFrom(Request.class));
        }
    
        @Test
        @DisplayName("Test Request methods inherited from CommonServerMessageBlockRequest")
        void testInheritedMethods() {
            // Given
            when(request.isResponseAsync()).thenReturn(true);
            when(request.getNext()).thenReturn(nextRequest);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

                assertEquals(expectedCause, e.getCause());
            }
        }
    
        public void test_inheritanceFromFessSystemException() {
            // Test that SsoProcessException is properly inherited from FessSystemException
            SsoProcessException ssoException = new SsoProcessException("Test SSO error");
    
            assertTrue(ssoException instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body-nested-models.md

    * Automatic documentation
    
    ## Special types and validation { #special-types-and-validation }
    
    Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
    
    To see all the options you have, checkout <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic's Type Overview</a>. You will see some examples in the next chapter.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            assertThrows(NullPointerException.class, () -> {
                msrpcShareGetInfo.getSecurity();
            });
        }
    
        @Test
        void testInheritedFields() throws Exception {
            // Verify inherited fields are properly set
            assertEquals(0x10, msrpcShareGetInfo.getOpnum());
    
            // Test that the info field is properly initialized
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/SLinkedList.java

         * Adds an element at the end.
         *
         * @param element the object to be added
         */
        public void addLast(final E element) {
            header.addBefore(element);
        }
    
        /**
         * Inserts an object at the specified position.
         *
         * @param index the position
         * @param element the element
         */
        public void add(final int index, final E element) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top