Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for getSink (0.13 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

                        // Ignore cleanup errors
                    }
                });
            }
            super.tearDown();
        }
    
        public void test_getName() {
            // Test getting the generator name
            assertEquals("TestGenerator", thumbnailGenerator.getName());
        }
    
        public void test_generate_withValidThumbnailId() {
            // Test successful thumbnail generation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/internal/Finalizer.java

     * unloading an OSGi bundle.
     *
     * <p>{@code com.google.common.base.FinalizableReferenceQueue} loads this class in its own class
     * loader. That way, this class doesn't prevent the main class loader from getting garbage
     * collected, and this class can detect when the main class loader has been garbage collected and
     * stop itself.
     */
    public class Finalizer implements Runnable {
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

            assertEquals("role1", permissions[0]);
            assertEquals("role2", permissions[1]);
            assertEquals("Uuser", permissions[2]);
        }
    
        public void test_getRoleNames() {
            // Test getting role names from permissions
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                @Override
                public String getRoleSearchRolePrefix() {
                    return "R";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

         */
        byte[] getSessionKey() throws CIFSException;
    
        /**
         * Gets the input stream for reading from this pipe.
         *
         * @return this pipe's input stream
         * @throws CIFSException if an error occurs getting the input stream
         */
        @Override
        SmbPipeInputStream getInput() throws CIFSException;
    
        /**
         *
         * @return this pipe's output stream
         * @throws CIFSException if an error occurs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. README.md

    ## Website
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## Issues/Questions
    
    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## Getting Started
    
    There are 2 ways to try Fess. The first is to download and install yourself. The second is to use [Docker](https://www.docker.com/products/docker-engine).
    
    ### Download and Install/Run
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  6. src/test/java/jcifs/smb/DfsImplTest.java

            assertNull(dfsImpl.getDc(mockContext, "anydomain.com"));
        }
    
        @Test
        void testGetDc_ConnectionFails() throws SmbAuthException {
            // Scenario: Transport connection fails when getting DC
            when(mockCredentials.getUserDomain()).thenReturn("authdomain.com");
            // When transport fails to connect, getDc returns null
            assertNull(dfsImpl.getDc(mockContext, "anydomain.com"));
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  This is only for the main schema. Additional schemas are unconcerned.
            #  And ReplaceSchema task basically ignores this.
            #
            #  Normally this 'except' means no getting meta data for excepted tables.
            #  (so the tables are not existing in SchemaHTML and HistoryHTML and so on).
            #  But you can specify the '@gen' suffix that means generate-only except.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

        private int getStatus(NetServerEnum2Response response) throws Exception {
            Field field = getSuperclassField(response.getClass(), "status");
            field.setAccessible(true);
            return field.getInt(response);
        }
    
        private void setStatus(NetServerEnum2Response response, int value) throws Exception {
            Method method = getSuperclassMethod(response.getClass(), "setStatus", int.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/BufferCache.java

         * Private constructor to prevent instantiation of this utility class.
         */
        private BufferCache() {
            // Utility class - not instantiable
        }
    
        private static final int MAX_BUFFERS = Config.getInt("jcifs.smb1.smb.maxBuffers", 16);
        private static final int MAX_BUFFER_SIZE = 0x100000; // 1MB maximum
    
        // Use concurrent queue for lock-free operations
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #     and not-param-result are auto-generated.
        #     And also not-param-result's properties are auto-generated.
        #     Target procedures are executed actually at Sql2Entity task.
        #     (because of getting from execution meta data (result set meta data))
        #     This property is valid only when isGenerateProcedureParameterBean is true.
        #
        ; isGenerateProcedureCustomizeEntity = false
        # - - - - - - - - - -/
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
Back to top