Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 416 for exit (3.52 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

            });
        }
    
        /**
         * Displays the form for editing an existing scheduled job.
         *
         * @param form the edit form containing the ID of the job to edit
         * @return HTML response for the job edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

    - Kubectl port-forward service will now properly exit when the attached pod dies (#103526, @brianpursley) [SIG API Machinery]
    - Kubelet: fixes a file descriptor leak in log rotation (#106382, @rphillips) [SIG Node]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. src/main/assemblies/files/service.bat

    rem Check JVM server dll first
    if exist "%JAVA_HOME%"\jre\bin\server\jvm.dll (
    	set JVM_DLL=\jre\bin\server\jvm.dll
    	goto foundJVM
    )
    
    rem Check 'server' JRE (JRE installed on Windows Server)
    if exist "%JAVA_HOME%"\bin\server\jvm.dll (
    	set JVM_DLL=\bin\server\jvm.dll
    	goto foundJVM
    )
    
    rem Fallback to 'client' JRE
    if exist "%JAVA_HOME%"\bin\client\jvm.dll (
    	set JVM_DLL=\bin\client\jvm.dll
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            }
        }
    
        public void test_methodsExist() {
            // Verify that processWebInfLib method is overridden (it's protected so we can't call it directly)
            try {
                final java.lang.reflect.Method method = FessWebResourceRoot.class.getDeclaredMethod("processWebInfLib");
                assertNotNull("processWebInfLib method should exist", method);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

        }
    
        /**
         * Displays the form for editing an existing request header item.
         *
         * @param form the edit form containing the ID of the item to edit
         * @return HTML response for the edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

            // Verify required methods exist
            try {
                CustomSizeValidator.class.getMethod("initialize", CustomSize.class);
                CustomSizeValidator.class.getMethod("isValid", CharSequence.class, ConstraintValidatorContext.class);
                assertTrue("Required methods exist", true);
            } catch (final NoSuchMethodException e) {
                fail("Required methods should exist: " + e.getMessage());
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java

                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        /**
         * Show the edit page.
         * @param form The edit form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                    form.dictId = dictId;
                });
            });
        }
    
        /**
         * Show the edit page.
         * @param form The edit form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, () -> asListHtml(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

        static final int FILE_SUPERSEDE = 0x0;
    
        /* Open the file or fail if it does not exist
         * aka OPEN_EXISTING
         */
    
        static final int FILE_OPEN = 0x1;
    
        /* Create the file or fail if it does not exist
         * aka CREATE_NEW
         */
    
        static final int FILE_CREATE = 0x2;
    
        /* Open the file or create it if it does not exist
         * aka OPEN_ALWAYS
         */
    
        static final int FILE_OPEN_IF = 0x3;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        }
    
        /**
         * Display the edit form for an existing stemmer override item.
         * Loads the item data and switches to edit mode or details view based on current state.
         *
         * @param form The edit form containing item ID and CRUD mode
         * @return HTML response for the edit page or details page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
Back to top