Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for W3 (0.01 seconds)

  1. src/test/java/org/codelibs/fess/webapp/WebXmlTest.java

            if (webXmlDocument == null) {
                return;
            }
            final Element root = webXmlDocument.getDocumentElement();
            final String schemaLocation = root.getAttributeNS("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation");
            assertTrue("schemaLocation should reference web-app_6_1.xsd", schemaLocation.contains("web-app_6_1.xsd"));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 09:08:35 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/web.xml

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
    -->
    <web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
                                 web-app_6_1.xsd"
             version="6.1">
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 09:08:35 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    <ruleset xmlns="http://codenarc.org/ruleset/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://codenarc.org/ruleset/1.0 http://codenarc.org/ruleset-schema.xsd"
             xsi:noNamespaceSchemaLocation="http://codenarc.org/ruleset-schema.xsd">
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Click Count (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    <ruleset xmlns="http://codenarc.org/ruleset/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://codenarc.org/ruleset/1.0 http://codenarc.org/ruleset-schema.xsd"
             xsi:noNamespaceSchemaLocation="http://codenarc.org/ruleset-schema.xsd">
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.3K bytes
    - Click Count (0)
  5. src/test/resources/thumbnail/test_generate_thumbnail.sh

        echo -e "rsvg-convert available: ${GREEN}YES${NC}"
    
        # Create a simple SVG test file
        SVG_TEST="${OUTPUT_DIR}/test.svg"
        cat > "${SVG_TEST}" << 'EOF'
    <svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
      <rect width="200" height="200" fill="blue"/>
      <circle cx="100" cy="100" r="80" fill="red"/>
    </svg>
    EOF
    
        # Test: SVG thumbnail generation
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
Back to Top