Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for LINE_SEPARATOR (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                try {
                    if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
                    if (!item.equals(oldItem)) {
                        throw new DictionaryException("Mapping file was updated: old=" + oldItem + " : new=" + item);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 10.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/CharSinkTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.base.StandardSystemProperty.LINE_SEPARATOR;
    import static com.google.common.io.TestOption.CLOSE_THROWS;
    import static com.google.common.io.TestOption.OPEN_THROWS;
    import static com.google.common.io.TestOption.READ_THROWS;
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 4.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/CharSink.java

     * the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.StandardSystemProperty.LINE_SEPARATOR;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.io.BufferedWriter;
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 16:07
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                try {
                    if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
                    if (!item.equals(oldItem)) {
                        throw new DictionaryException("Protwords file was updated: old=" + oldItem + " : new=" + item);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                try {
                    if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
                    if (!item.equals(oldItem)) {
                        throw new DictionaryException("Stopwords file was updated: old=" + oldItem + " : new=" + item);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                try {
                    if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
                    if (!item.equals(oldItem)) {
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 10.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/lang/SystemUtilTest.java

    public class SystemUtilTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void test() throws Exception {
            System.out.println(SystemUtil.FILE_ENCODING);
            System.out.println(SystemUtil.LINE_SEPARATOR);
            System.out.println(SystemUtil.PATH_SEPARATOR);
            System.out.println(SystemUtil.OS_NAME);
            System.out.println(SystemUtil.JAVA_IO_TMPDIR);
            System.out.println(SystemUtil.USER_DIR);
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                try {
                    if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
                    if (!item.equals(oldItem)) {
                        throw new DictionaryException("Kuromoji file was updated: old=" + oldItem + " : new=" + item);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                try {
                    if (item == null || item.getId() != oldItem.getId() || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
                    if (!item.equals(oldItem)) {
                        throw new DictionaryException("Synonym file was updated: old=" + oldItem + " : new=" + item);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 12.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

             assertEquals(3, itemList3.size());
    
             assertEquals(
                     "b1,b2=>B1" + Constants.LINE_SEPARATOR + "c1=>C1,C2"
                             + Constants.LINE_SEPARATOR + "X1,x1"
                             + Constants.LINE_SEPARATOR,
                     new String(FileUtil.getBytes(file1), Constants.UTF_8));
         }
         */
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9K bytes
    - Viewed (0)
Back to top