Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 305 for existed (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/EditForm.java

        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the mapping dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/EditForm.java

        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the synonym dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java

        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the data configuration being edited.
         * This is a required field for identifying which data config to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.java

    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the group being edited.
         * This is a required field for identifying which group to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this group.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java

        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the path mapping configuration being edited.
         * This is a required field for identifying which path map to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the related content configuration being edited.
         * This is a required field for identifying which related content entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the web authentication configuration being edited.
         * This is a required field for identifying which web authentication entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            try {
                fessConfig.get("non.existent.property");
                fail("Should throw ConfigPropertyNotFoundException");
            } catch (ConfigPropertyNotFoundException e) {
                assertEquals("non.existent.property", e.getMessage());
            }
        }
    
        // Test isExtensionAllowed method
        /*
        // Commented out - methods don't exist in FessConfig
        public void test_isExtensionAllowed() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            PluginHelper testHelper = new PluginHelper();
            Artifact artifact = new Artifact("non-existent", "1.0.0");
    
            try {
                testHelper.deleteInstalledArtifact(artifact);
                fail("Expected PluginException");
            } catch (PluginException e) {
                assertTrue(e.getMessage().contains("does not exist"));
            }
        }
    
        public void test_getArtifactFromFileName_withUrl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_it.properties

    errors.app.db.already.deleted = Potrebbe essere stato eliminato da un altro processo. Riprova l'operazione.
    errors.app.db.already.updated = Potrebbe essere stato aggiornato da un altro processo. Riprova l'operazione.
    errors.app.db.already.exists = I dati esistono già. Riprova l'operazione.
    errors.app.double.submit.request = Questa richiesta potrebbe essere già stata elaborata. Riprova l'operazione.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top