Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 6,540 for CLASS (0.02 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

    import org.dbflute.util.DfTypeUtil;
    
    /**
     * The DBM of CrawlingInfoParam.
     *
     * @author ESFlute (using FreeGen)
     */
    public class CrawlingInfoParamDbm extends AbstractDBMeta {
    
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/DosFileFilterTest.java

    import org.junit.jupiter.api.Test;
    
    public class DosFileFilterTest {
    
        private DosFileFilter filter;
    
        @BeforeEach
        public void setup() {
            filter = new DosFileFilter("*", SmbFile.ATTR_NORMAL);
        }
    
        @Test
        public void testAcceptReturnsTrueWhenAttributesMatch() throws Exception {
            SmbFile file = mock(SmbFile.class);
            when(file.getAttributes()).thenReturn(SmbFile.ATTR_NORMAL);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/Smb2EchoRequestTest.java

        @Nested
        @DisplayName("CreateResponse Tests")
        class CreateResponseTests {
    
            @Test
            @DisplayName("Should create correct response type")
            void testCreateResponse() {
                Smb2EchoResponse response = echoRequest.createResponse(mockContext, echoRequest);
    
                assertNotNull(response);
                assertInstanceOf(Smb2EchoResponse.class, response);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. docs/vi/docs/virtual-environments.md

    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    
    Nếu bạn có <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a>:
    
    <div class="termy">
    
    ```console
    $ uv pip install "fastapi[standard]"
    ---> 100%
    ```
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 07 22:19:18 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SIDTest.java

                SID sid = new SID("S-1-5-21-1");
                // Happy path
                assertSame(sid, sid.unwrap(SID.class));
                assertSame(sid, sid.unwrap(Object.class));
                // Invalid unwrap
                assertThrows(ClassCastException.class, () -> sid.unwrap(String.class));
            }
    
            @Test
            @DisplayName("isEmpty and isBlank edge cases")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/InfoTest.java

     * Unit tests for the {@link Info} implementations used by the SMB1
     * protocol handling code.
     */
    class InfoTest {
    
        // A tiny mock to illustrate Mockito interaction patterns.
        @Mock
        private SmbComTransactionResponse transactionMock;
    
        @BeforeEach
        void setUp() {
            transactionMock = mock(SmbComTransactionResponse.class);
        }
    
        @Test
        void testSmbComQueryInformationResponseGetters() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/dcerpc/ndr/NdrObjectTest.java

    /**
     * Tests for the NdrObject abstract class.
     * This test uses a concrete implementation to verify the abstract contract.
     */
    @ExtendWith(MockitoExtension.class)
    class NdrObjectTest {
    
        @Mock
        private NdrBuffer mockBuffer;
    
        private ConcreteNdrObject ndrObject;
    
        // A concrete implementation of NdrObject for testing purposes.
        private static class ConcreteNdrObject extends NdrObject {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsDataConfigBhv.java

        }
    
        @Override
        protected Class<? extends DataConfig> typeOfSelectedEntity() {
            return DataConfig.class;
        }
    
        @Override
        protected Class<DataConfig> typeOfHandlingEntity() {
            return DataConfig.class;
        }
    
        @Override
        protected Class<DataConfigCB> typeOfHandlingConditionBean() {
            return DataConfigCB.class;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsLabelTypeBhv.java

        }
    
        @Override
        protected Class<? extends LabelType> typeOfSelectedEntity() {
            return LabelType.class;
        }
    
        @Override
        protected Class<LabelType> typeOfHandlingEntity() {
            return LabelType.class;
        }
    
        @Override
        protected Class<LabelTypeCB> typeOfHandlingConditionBean() {
            return LabelTypeCB.class;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. okhttp-logging-interceptor/api/logging-interceptor.api

    	public final fun setLevel (Lokhttp3/logging/HttpLoggingInterceptor$Level;)Lokhttp3/logging/HttpLoggingInterceptor;
    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Companion {
    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Level : java/lang/Enum {
    	public static final field BASIC Lokhttp3/logging/HttpLoggingInterceptor$Level;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top