Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 14 of 14 for Translators (0.05 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationPathTranslator.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.configuration;
    
    import java.io.File;
    
    /**
     * Postprocesses filesystem paths. For instance, a path translator might want to resolve relative paths given in the
     * bean configuration against some base directory.
     *
     */
    public interface BeanConfigurationPathTranslator {
    
        /**
         * Translates the specified path.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java

        /**
         * UTF-7 Byte Order Mark definition.
         */
        protected static final ByteOrderMark BOM_UTF_7 = new ByteOrderMark("UTF-7", 0x2B, 0x2F, 0x76);
    
        /**
         * HTML4 unescape translator.
         */
        protected static final CharSequenceTranslator UNESCAPE_HTML4 = new AggregateTranslator(
                new LookupTranslator(EntityArrays.BASIC_UNESCAPE), new LookupTranslator(EntityArrays.ISO8859_1_UNESCAPE),
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Nov 23 12:19:14 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/FessBoot.java

                context.setResources(new FessWebResourceRoot(context));
                context.setCookieProcessor(new Rfc6265CookieProcessor());
            }
        }
    
        /**
         * Creates a Fess-specific boot properties translator.
         *
         * @return a new FessBootPropsTranslator instance
         */
        @Override
        protected BootPropsTranslator createBootPropsTranslator() {
            return new FessBootPropsTranslator();
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  4. doc/go_mem.html

    provided it can be proved that <code>*shared</code> will not fault on access,
    because the potential added read will not affect any existing concurrent reads or writes.
    On the other hand, the rewrite would not be valid in a source-to-source translator.
    </p>
    
    <h2 id="conclusion">Conclusion</h2>
    
    <p>
    Go programmers writing data-race-free programs can rely on
    sequentially consistent execution of those programs,
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Aug 05 15:41:37 GMT 2025
    - 26.6K bytes
    - Click Count (0)
Back to Top