Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Ng (0.19 sec)

  1. 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 19 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. cmd/notification.go

    	ng := WithNPeers(len(sys.peerClients)).WithRetries(1)
    	for idx, client := range sys.peerClients {
    		client := client
    		ng.Go(GlobalContext, func() error {
    			if client == nil {
    				return errPeerNotReachable
    			}
    			return client.DeletePolicy(policyName)
    		}, idx, *client.host)
    	}
    	return ng.Wait()
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 12 18:13:36 GMT 2024
    - 44.5K bytes
    - Viewed (0)
  3. 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 19 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
    // 5. Compile All for the experimental build cache NG
    // 6. BuildCommitDistribution may build a commit which is not built before
        isInBuild(
            "Check_CompileAllBuild",
            "Component_GradlePlugin_Performance_PerformanceLatestMaster",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 07 05:49:29 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    	if !dryRun {
    		if globalIsDistErasure {
    			ng := WithNPeers(len(globalNotificationSys.peerClients))
    			for idx, client := range globalNotificationSys.peerClients {
    				_, ok := failedClients[idx]
    				if ok {
    					continue
    				}
    				client := client
    				ng.Go(ctx, func() error {
    					return client.CommitBinary(ctx)
    				}, idx, *client.host)
    			}
    
    			for _, nerr := range ng.Wait() {
    				if nerr.Err != nil {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    FBC3..FBD2    ; disallowed                             # NA   <reserved-FBC3>..<reserved-FBD2>
    FBD3..FBD6    ; mapped                 ; 06AD          # 1.1  ARABIC LETTER NG ISOLATED FORM..ARABIC LETTER NG MEDIAL FORM
    FBD7..FBD8    ; mapped                 ; 06C7          # 1.1  ARABIC LETTER U ISOLATED FORM..ARABIC LETTER U FINAL FORM
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
Back to top