Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for jis (0.16 sec)

  1. src/test/java/org/codelibs/core/io/CopyUtilTest.java

         * @throws Exception
         */
        @Test
        public void testFileToFile_Encoding() throws Exception {
            int result = copy(inputFile, "UTF-8", outputFile, "Shift_JIS");
            assertThat(result, is(urlString.length()));
    
            result = copy(outputFile, "Shift_JIS", writer);
            assertThat(writer.toString(), is(urlString));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/test/resources/org/codelibs/core/xml/test1.xml

    <?xml version="1.0" encoding="Shift_JIS"?>
    
    <tag1 attr1="aaa" attr2="bbb">
      111
      222
      <tag2>c c </tag2>
      <tag2>ddd</tag2>
      <tag3>
        <tag4>eee</tag4>
        <tag5>ddd</tag5>
      </tag3>
      333
    XML
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 200 bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/lt/stopwords.txt

    be
    bei
    bet
    bus
    būti
    būtų
    buvo
    dėl
    gali
    į
    iki
    ir
    iš
    ja
    ją
    jai
    jais
    jam
    jame
    jas
    jei
    ji
    jį
    jie
    jiedu
    jiedvi
    jiedviem
    jiedviese
    jiems
    jis
    jo
    jodviem
    jog
    joje
    jomis
    joms
    jos
    jose
    jų
    judu
    judvi
    judviejų
    jųdviejų
    judviem
    judviese
    jumis
    jums
    jumyse
    juo
    juodu
    juodviese
    juos
    juose
    jus
    jūs
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 786 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/filter/EncodingFilterTest.java

            assertEquals(1, paramMap.size());
            assertEquals("テスト", paramMap.get("a")[0]);
    
            paramMap = filter.parseQueryString("a=%83e%83X%83g", "Shift_JIS");
            assertEquals(1, paramMap.size());
            assertEquals("テスト", paramMap.get("a")[0]);
    
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

            encoding = config.getInitParameter(LastaPrepareFilter.ENCODING_KEY);
            if (encoding == null) {
                encoding = LastaPrepareFilter.DEFAULT_ENCODING;
            }
    
            // ex. sjis:Shift_JIS,eucjp:EUC-JP
            final String value = config.getInitParameter(ENCODING_MAP);
            if (StringUtil.isNotBlank(value)) {
                final String[] encodingPairs = value.split(",");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/web.xml

        <init-param>
          <param-name>encoding</param-name>
          <param-value>UTF-8</param-value>
        </init-param>
        <init-param>
          <param-name>encodingRules</param-name>
          <param-value>sjis:Shift_JIS,eucjp:EUC-JP</param-value>
        </init-param>
      </filter>
    
      <filter>
        <filter-name>corsFilter</filter-name>
        <filter-class>org.codelibs.fess.filter.CorsFilter</filter-class>
      </filter>
    
      <filter>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 13 21:53:22 GMT 2019
    - 7K bytes
    - Viewed (0)
  7. src/archive/zip/writer.go

    		// local character encoding. Most encoding are compatible with a large
    		// subset of CP-437, which itself is ASCII-like.
    		//
    		// Forbid 0x7e and 0x5c since EUC-KR and Shift-JIS replace those
    		// characters with localized currency and overline characters.
    		if r < 0x20 || r > 0x7d || r == 0x5c {
    			if !utf8.ValidRune(r) || (r == utf8.RuneError && size == 1) {
    				return false, false
    			}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/archive/zip/writer_test.go

    			comment: "in the 世界",
    			flags:   0x808,
    		},
    		{
    			name:    "the replacement rune is �",
    			comment: "the replacement rune is �",
    			flags:   0x808,
    		},
    		{
    			// Name is Japanese encoded in Shift JIS.
    			name:    "\x93\xfa\x96{\x8c\xea.txt",
    			comment: "in the 世界",
    			flags:   0x008, // UTF-8 must not be set
    		},
    	}
    
    	// write a zip file
    	buf := new(bytes.Buffer)
    	w := NewWriter(buf)
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  9. src/archive/zip/reader.go

    		// Some ZIP writers use UTF-8 encoding without setting the UTF-8 flag.
    		// Since it is impossible to always distinguish valid UTF-8 from some
    		// other encoding (e.g., GBK or Shift-JIS), we trust the flag.
    		f.NonUTF8 = f.Flags&0x800 == 0
    	}
    
    	needUSize := f.UncompressedSize == ^uint32(0)
    	needCSize := f.CompressedSize == ^uint32(0)
    	needHeaderOffset := f.headerOffset == int64(^uint32(0))
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  10. src/archive/zip/reader_test.go

    				Mode:    0644,
    				// Name is valid UTF-8, but format does not have UTF-8 flag set.
    				// We don't do UTF-8 detection for multi-byte runes due to
    				// false-positives with other encodings (e.g., Shift-JIS).
    				// Format says encoding is not UTF-8, so we trust it.
    				NonUTF8:  true,
    				Modified: time.Date(2017, 11, 6, 13, 9, 27, 0, timeZone(-8*time.Hour)),
    			},
    		},
    	},
    	{
    		Name: "utf8-osx.zip",
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
Back to top