Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 492 for initialize (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

            saveToken();
            return asHtml(path_AdminDictSynonym_AdminDictSynonymEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                    form.dictId = dictId;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing synonym item.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  2. src/main/java/jcifs/http/NetworkExplorer.java

                this.transportContext = new BaseContext(new PropertyConfiguration(p));
            } catch (final CIFSException ex) {
                throw new ServletException("Failed to initialize CIFS context", ex);
            }
        }
    
        /**
         * Handles file download requests for SMB files.
         * @param req the HTTP servlet request
         * @param resp the HTTP servlet response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

                assertTrue(lockRequest instanceof ServerMessageBlock2Request);
                assertTrue(lockRequest instanceof RequestWithFileId);
            }
    
            @Test
            @DisplayName("Should initialize with SMB2_LOCK command")
            void testCommandInitialization() {
                Smb2LockRequest lockRequest = new Smb2LockRequest(mockConfig, testFileId, testLocks);
                assertNotNull(lockRequest);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        public ThumbnailManager() {
            // Default constructor
        }
    
        /**
         * Initializes the thumbnail manager after construction.
         * Sets up base directory and starts background processing.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    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/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

        }
    
        @Nested
        @DisplayName("Constructor Tests")
        class ConstructorTests {
    
            @Test
            @DisplayName("Constructor should initialize with config, fileId and fileName")
            void testConstructorWithAllParameters() {
                // When
                Smb2CloseResponse closeResponse = new Smb2CloseResponse(mockConfig, testFileId, testFileName);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

            saveToken();
            return asHtml(path_AdminDictStemmeroverride_AdminDictStemmeroverrideEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                    form.dictId = dictId;
                });
            });
        }
    
        /**
         * Display the edit form for an existing stemmer override item.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminElevateword_AdminElevatewordEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerLabels(data);
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java

            }
    
            testFileName = "test-file.txt";
            request = new Smb2CloseRequest(mockConfig, testFileId, testFileName);
        }
    
        @Test
        @DisplayName("Constructor with fileId and fileName should initialize correctly")
        void testConstructorWithFileIdAndFileName() throws Exception {
            // Verify command is set correctly (SMB2_CLOSE = 0x0006)
            Field commandField = ServerMessageBlock2.class.getDeclaredField("command");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        var authenticator: Authenticator = Authenticator { route, response -> TODO() }
      }
    
      @Test
      fun cache() {
        val cache = Cache(File("/cache/"), Integer.MAX_VALUE.toLong())
        cache.initialize()
        cache.delete()
        cache.evictAll()
        val urls: MutableIterator<String> = cache.urls()
        val writeAbortCount: Int = cache.writeAbortCount()
        val writeSuccessCount: Int = cache.writeSuccessCount()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  10. docs/smb3-features/03-multi-channel-design.md

        if (!serverCapabilities.contains(SMB2_GLOBAL_CAP_MULTI_CHANNEL)) {
            log.debug("Server does not support multi-channel");
            return;
        }
        
        multiChannelSupported = true;
        
        // Initialize channel manager
        channelManager = new ChannelManager(context, this);
        channelManager.initializeMultiChannel();
    }
    
    public SmbTransport selectTransport(SMBMessage message) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top