Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Ng (0.13 sec)

  1. src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java

            if (!external) {
                disableExternalResources(schemaFactory);
            }
            return schemaFactory;
        }
    
        /**
         * RELAX NGのための{@link SchemaFactory}を生成します。
         *
         * @return RELAX NGのための{@link SchemaFactory}
         */
        public static SchemaFactory newRelaxNgSchemaFactory() {
            return newRelaxNgSchemaFactory(false);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/xml/SchemaUtil.java

            assertArgumentNotNull("schema", schema);
            return newSchema(SchemaFactoryUtil.newW3cXmlSchemaFactory(), schema);
        }
    
        /**
         * ファイルからRELAX NGのための{@link Schema}を生成します。
         *
         * @param schema
         *            RELAX NGファイル。{@literal null}であってはいけません
         * @return {@link Schema}
         */
        public static Schema newRelaxNgSchema(final File schema) {
            assertArgumentNotNull("schema", schema);
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

        }
    
        @Test
        void testInstall_ng() {
            checkPutMethod(Collections.emptyMap(), getInstallEndpointSuffix()).then().body("response.status", equalTo(1));
        }
    
        @Test
        void testDelete_ng() {
            checkDeleteMethod(Collections.emptyMap()).then().body("response.status", equalTo(1));
        }
    
        @Test
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/validation/UriTypeValidatorTest.java

            values = "http://www.foo.com/\nhttps://www.bar.com/\n http://www.baz.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
        }
    
        public void test_check_ng() {
            String[] protocols;
            String values;
    
            protocols = new String[] { "http:" };
            values = "https://www.foo.com/";
            assertFalse(UriTypeValidator.check(protocols, values));
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top