Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for new_output (0.54 sec)

  1. src/test/java/org/codelibs/fess/it/admin/dict/StemmerOverrideTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("output", "new_output");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/dict/MappingTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("output", "new_output");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

         *
         * @return The new output stem.
         */
        public String getNewOutput() {
            return newOutput;
        }
    
        /**
         * Sets the new output stem.
         *
         * @param newOutputs The new output stem.
         */
        public void setNewOutput(final String newOutputs) {
            newOutput = newOutputs;
        }
    
        /**
         * Gets the original input word.
         *
         * @return The original input word.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

        public String getNewOutput() {
            return newOutput;
        }
    
        /**
         * Sets the new output character sequence for update operations.
         * Newline characters in the output are automatically replaced with spaces.
         *
         * @param newOutput the new output sequence to set
         */
        public void setNewOutput(final String newOutput) {
            this.newOutput = newOutput == null ? null : newOutput.replace("\n", " ");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

         * @return The new output synonyms.
         */
        public String[] getNewOutputs() {
            return newOutputs;
        }
    
        /**
         * Sets the new output synonyms.
         *
         * @param newOutputs The new output synonyms.
         */
        public void setNewOutputs(final String[] newOutputs) {
            this.newOutputs = newOutputs;
        }
    
        /**
         * Gets the original input words.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            item.setNewOutput("newOutput");
    
            String str = item.toString();
            assertTrue(str.contains("id=1"));
            assertTrue(str.contains("inputs=[a, b]"));
            assertTrue(str.contains("output=output"));
            assertTrue(str.contains("newInputs=[x, y]"));
            assertTrue(str.contains("newOutput=newOutput"));
        }
    
        public void test_toLineString_withoutUpdates() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/dict/SynonymTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("outputs", "new_outputs");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                validateMappingString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
                final String newOutput = form.output;
                entity.setNewOutput(newOutput);
                return entity;
            });
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                validateSynonymString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
                final String[] newOutputs = splitLine(form.outputs);
                validateSynonymString(action, newOutputs, "outputs", hook);
                entity.setNewOutputs(newOutputs);
                return entity;
            });
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
Back to top