Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 743 for multiples (0.04 sec)

  1. src/test/java/jcifs/https/HandlerTest.java

                // Then
                assertTrue(testHandler instanceof jcifs.http.Handler);
                assertEquals(443, testHandler.getDefaultPort());
            }
    
            @Test
            @DisplayName("Should handle multiple instances")
            void testMultipleInstances() {
                // When
                Handler handler1 = new Handler(null);
                Handler handler2 = new Handler(null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-operation-configuration.md

    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[18:19] *}
    
    ## Description from docstring { #description-from-docstring }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/FileInformationTest.java

            // Verify the values match
            assertEquals(original.toString(), decoded.toString());
        }
    
        /**
         * Test multiple FileInformation implementations can coexist
         */
        @Test
        @DisplayName("Test multiple FileInformation implementations")
        void testMultipleFileInformationImplementations() {
            // Create different mock implementations
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequestTest.java

            assertNotNull(request);
        }
    
        @Test
        @DisplayName("Test size calculation with multiple dialects")
        void testSizeWithMultipleDialects() {
            ValidateNegotiateInfoRequest request =
                    new ValidateNegotiateInfoRequest(DEFAULT_CAPABILITIES, defaultClientGuid, DEFAULT_SECURITY_MODE, defaultDialects);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating mapping dictionary entries.
     * Mapping dictionaries allow administrators to define synonym mappings
     * where multiple input terms can be mapped to a single output term for search normalization.
     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/advance.jsp

    						key="labels.index_lang"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<la:select property="lang" styleId="langSearchOption" multiple="true" styleClass="form-control">
    						<c:forEach var="item" items="${langItems}">
    							<la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
    						</c:forEach>
    					</la:select>
    				</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

            @Test
            @DisplayName("Should handle multiple receives for fragment")
            void testDoSendReceiveFragment_MultipleReceives() throws Exception {
                DcerpcPipeHandle handle = createMockedDcerpcPipeHandle();
    
                byte[] buf = new byte[50];
                byte[] inB = new byte[100];
    
                // Setup fragment length requiring multiple receives
                Encdec.enc_uint16le((short) 80, inB, 8);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                    .forEach(s -> buf.append(s));
            log(buf);
        }
    
        /**
         * Increments the thread reference count for the specified crawler object.
         * Used when the same object is being processed on multiple threads.
         *
         * @param keyObj the crawler object running on an additional thread
         */
        public void runOnThread(final Object keyObj) {
            getCacheKey(keyObj).ifPresent(key -> {
                try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. tests/multi_primary_keys_test.go

    }
    
    func TestManyToManyWithMultiPrimaryKeys(t *testing.T) {
    	if name := DB.Dialector.Name(); name == "sqlite" || name == "sqlserver" {
    		t.Skip("skip sqlite, sqlserver due to it doesn't support multiple primary keys with auto increment")
    	}
    
    	if name := DB.Dialector.Name(); name == "postgres" || name == "mysql" || name == "gaussdb" {
    		stmt := gorm.Statement{DB: DB}
    		stmt.Parse(&Blog{})
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Tables.java

       * specified supplier, whose cells are generated by applying the provided mapping functions to the
       * input elements. Cells are inserted into the generated {@code Table} in encounter order.
       *
       * <p>If multiple input elements map to the same row and column, an {@code IllegalStateException}
       * is thrown when the collection operation is performed.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top