Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for Federation (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        */
        public static final int SMB2_SHAREFLAG_FORCE_LEVEL2_OPLOCK = 0x1000;
        /**
         * Share flag indicating that hash generation V1 is enabled for this share.
         */
        public static final int SMB2_SHAREFLAG_ENABLE_HASH_V1 = 0x2000;
        /**
         * Share flag indicating that hash generation V2 is enabled for this share.
         */
        public static final int SMB2_SHAREFLAG_ENABLE_HASH_V2 = 0x4000;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java

     */
    package org.codelibs.fess.thumbnail;
    
    import java.io.File;
    import java.util.Map;
    
    import org.codelibs.core.misc.Tuple3;
    
    /**
     * Interface for thumbnail generation implementations.
     * Provides methods for creating thumbnails from various document types.
     */
    public interface ThumbnailGenerator {
    
        /**
         * Gets the name of this thumbnail generator.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

     */
    public class GenerateThumbnailJob extends ExecJob {
        /** Logger for this class. */
        static final Logger logger = LogManager.getLogger(GenerateThumbnailJob.class);
    
        /** Number of threads to use for thumbnail generation. */
        protected int numOfThreads = 1;
    
        /** Flag indicating whether to perform cleanup operations. */
        protected boolean cleanup = false;
    
        /**
         * Default constructor for the GenerateThumbnailJob.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        protected final List<ThumbnailGenerator> generatorList = new ArrayList<>();
    
        /**
         * Queue for thumbnail generation tasks containing URL, content, and path tuples.
         */
        protected BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue;
    
        /**
         * Flag indicating whether thumbnail generation is currently in progress.
         */
        protected volatile boolean generating;
    
        private Thread thumbnailQueueThread;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

            assertNotNull(result);
            assertTrue(result.contains("0 docs"));
        }
    
        // Test script generation with multiple labels
        public void test_execute_scriptGenerationWithMultipleLabels() {
            // This test verifies that the job executes correctly
            // Note: We can't easily test the actual script generation because the mock doesn't call the processor
    
            String result = updateLabelJob.execute();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when thumbnail generation fails.
     * This exception is used for errors during thumbnail creation and processing.
     */
    public class ThumbnailGenerationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

     */
    public class CommandGenerator extends BaseThumbnailGenerator {
        private static final Logger logger = LogManager.getLogger(CommandGenerator.class);
    
        /** List of command strings to execute for thumbnail generation. */
        protected List<String> commandList;
    
        /** Timeout for command execution in milliseconds. */
        protected long commandTimeout = 30 * 1000L;// 30sec
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java

    package org.codelibs.fess.thumbnail.impl;
    
    import java.io.File;
    
    /**
     * Empty implementation of thumbnail generator that does not generate any thumbnails.
     * This class is used as a no-op thumbnail generator when thumbnail generation is disabled
     * or when no specific thumbnail generator is configured.
     */
    public class EmptyGenerator extends BaseThumbnailGenerator {
    
        /**
         * Default constructor.
         */
        public EmptyGenerator() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/response-model.md

    In this case, you can disable the response model generation by setting `response_model=None`:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    This will make FastAPI skip the response model generation and that way you can have any return type annotations you need without it affecting your FastAPI application. 🤓
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 16K bytes
    - Viewed (0)
  10. src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java

                "RC4 cipher not available in this JVM", "DES encryption is deprecated and not supported", "HMAC-SHA256 algorithm not found",
                "RSA key generation failed: key size not supported" })
        void testMessageConstructorWithCryptoMessages(String message) {
            // Given & When
            CIFSUnsupportedCryptoException exception = new CIFSUnsupportedCryptoException(message);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top