Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for y18n (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. kotlin-js-store/yarn.lock

      integrity sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==
    
    y18n@^5.0.5:
      version "5.0.8"
      resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
      integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
    
    yargs-parser@20.2.4:
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/io/testdata/i18n.txt

    zhenghua <******@****.***> 1492724018 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 39 bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/io/FilesTest.java

        assertThat(Files.toString(temp, UTF_16LE)).isEqualTo(I18N);
        Files.append(I18N, temp, UTF_16LE);
        assertThat(Files.toString(temp, UTF_16LE)).isEqualTo(I18N + I18N);
        Files.append(I18N, temp, UTF_16LE);
        assertThat(Files.toString(temp, UTF_16LE)).isEqualTo(I18N + I18N + I18N);
      }
    
      public void testCopyToOutputStream() throws IOException {
        File i18nFile = getTestFile("i18n.txt");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/io/ResourcesTest.java

        URL resource = getClass().getResource("testdata/i18n.txt");
        assertThat(Resources.toString(resource, UTF_8)).isEqualTo(I18N);
        assertThat(Resources.toString(resource, US_ASCII)).isNotEqualTo(I18N);
      }
    
      public void testToByteArray() throws IOException {
        URL resource = getClass().getResource("testdata/i18n.txt");
        assertThat(Resources.toByteArray(resource)).isEqualTo(I18N.getBytes(UTF_8));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  5. CLAUDE.md

    ├── fess_config.properties     # Main configuration
    ├── app.xml, fess.xml          # DI configuration
    ├── fess_*.xml                 # Feature-specific DI
    ├── fess_label_*.properties    # UI labels (i18n)
    ├── fess_message_*.properties  # Validation messages (i18n)
    └── fess_indices/              # OpenSearch index mappings
    
    src/main/webapp/WEB-INF/view/  # JSP templates
    src/test/java/.../it/          # Integration tests (*Tests.java)
    ```
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi.s

    	VPERMT2B Y20, Y7, K6, Y18                          // 62a2452e7dd4
    	VPERMT2B 7(SI)(DI*4), Y7, K6, Y18                  // 62e2452e7d94be07000000
    	VPERMT2B -7(DI)(R8*2), Y7, K6, Y18                 // 62a2452e7d9447f9ffffff
    	VPERMT2B Y14, Y21, K6, Y18                         // 62c255267dd6
    	VPERMT2B Y8, Y21, K6, Y18                          // 62c255267dd0
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 28.7K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/io/IoTestCase.java

     * @author Colin Decker
     */
    @NullUnmarked
    public abstract class IoTestCase extends TestCase {
    
      private static final Logger logger = Logger.getLogger(IoTestCase.class.getName());
    
      static final String I18N =
          "\u00CE\u00F1\u0163\u00E9\u0072\u00F1\u00E5\u0163\u00EE\u00F6"
              + "\u00F1\u00E5\u013C\u00EE\u017E\u00E5\u0163\u00EE\u00F6\u00F1";
    
      static final String ASCII =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 5.6K bytes
    - Click Count (0)
  8. src/cmd/asm/internal/asm/testdata/avx512enc/aes_avx512f.s

    	VAESENC 7(AX)(CX*8), X11, X30                      // 62622508dcb4c807000000 or 6262a508dcb4c807000000
    	VAESENC Y18, Y15, Y2                               // 62b20528dcd2 or 62b28528dcd2
    	VAESENC Y24, Y15, Y2                               // 62920528dcd0 or 62928528dcd0
    	VAESENC Y18, Y22, Y2                               // 62b24d20dcd2 or 62b2cd20dcd2
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 29K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/io/CharSinkTest.java

    /**
     * Tests for the default implementations of {@code CharSink} methods.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public class CharSinkTest extends IoTestCase {
    
      private static final String STRING = ASCII + I18N;
    
      private TestCharSink sink;
    
      @Override
      public void setUp() {
        sink = new TestCharSink();
      }
    
      public void testOpenBufferedStream() throws IOException {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/io/CharSinkTest.java

    /**
     * Tests for the default implementations of {@code CharSink} methods.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public class CharSinkTest extends IoTestCase {
    
      private static final String STRING = ASCII + I18N;
    
      private TestCharSink sink;
    
      @Override
      public void setUp() {
        sink = new TestCharSink();
      }
    
      public void testOpenBufferedStream() throws IOException {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.7K bytes
    - Click Count (0)
Back to Top