Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for new_segment (0.44 sec)

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

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("segmentation", "new_segment");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/RelativePath.java

         * @return The path.
         */
        public RelativePath replaceLastName(String name) {
            String[] newSegments = new String[segments.length];
            copySegments(newSegments, segments, segments.length - 1);
            newSegments[segments.length - 1] = name;
            return new RelativePath(endsWithFile, newSegments);
        }
    
        /**
         * <p>Appends the given path to the end of this path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 05:20:08 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top