Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 33 of 33 for amp (0.05 seconds)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertEquals("\u00C4pfel und \u00D6pfel", title);
        }
    
        @Test
        public void test_htmlEntity_mixedContent() throws Exception {
            final String data = "<html><body><p>Caf&#233; &amp; Bar</p></body></html>";
            final Document document = getDocument(data);
            final String bodyText = document.getElementsByTagName("BODY").item(0).getTextContent();
            assertTrue(bodyText.contains("Caf\u00E9"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

          <fields>
            <field>
              <name>includes</name>
              <version>3.0.0+</version>
              <description>
                A list of patterns to include, e.g. {@code **&amp;#47;*.xml}.
              </description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            setAttributes(getAttributes() | ATTR_READONLY);
        }
    
        /**
         * Turn off the read-only attribute of this file. This is shorthand for
         * {@code setAttributes( getAttributes() &amp; ~ATTR_READONLY )}.
         *
         * @throws SmbException if an error occurs while clearing the read-only flag
         */
        public void setReadWrite() throws SmbException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 112.2K bytes
    - Click Count (0)
Back to Top