Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for inputEncoding (0.09 sec)

  1. src/main/webapp/WEB-INF/orig/open-search/osdd.xml

      <Contact>******@****.***</Contact>
      <SearchForm>http://localhost:8080/fess/</SearchForm>
      <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/>
      <InputEncoding>UTF-8</InputEncoding>
      <OutputEncoding>UTF-8</OutputEncoding>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 10 02:26:02 UTC 2015
    - 535 bytes
    - Viewed (0)
  2. src/test/resources/osdd/osdd.xml

      <Contact>******@****.***</Contact>
      <SearchForm>http://localhost:8080/fess/</SearchForm>
      <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/>
      <InputEncoding>UTF-8</InputEncoding>
      <OutputEncoding>UTF-8</OutputEncoding>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 08 05:17:08 UTC 2024
    - 535 bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

            Charset inputEncoding = Charset.forName(getInputEncoding().get());
    
            File destination = getDestinationFile().get().getAsFile();
            Charset outputEncoding = Charset.forName(getOutputEncoding().get());
            try (InputStreamReader inputStream = new InputStreamReader(new FileInputStream(markdownFile), inputEncoding);
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

                              <SearchForm>http://localhost:8080/fess/</SearchForm>
                              <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/>
                              <InputEncoding>UTF-8</InputEncoding>
                              <OutputEncoding>UTF-8</OutputEncoding>
                            </OpenSearchDescription>
                            """, new String(InputStreamUtil.getBytes(ins)));
                }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/CopyUtil.java

            assertArgumentNotEmpty("inputEncoding", inputEncoding);
            assertArgumentNotNull("out", out);
            assertArgumentNotEmpty("outputEncoding", outputEncoding);
    
            final Reader is = ReaderUtil.create(in, inputEncoding);
            try {
                final Writer os = WriterUtil.create(out, outputEncoding);
                try {
                    return copyInternal(wrap(is), wrap(os));
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top