Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for chinese (0.15 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            assertEquals(Locale.ROOT, fessConfig.getQueryLocaleFromName("ja"));
            assertEquals(Locale.JAPANESE, fessConfig.getQueryLocaleFromName("test_ja"));
            assertEquals(Locale.CHINESE, fessConfig.getQueryLocaleFromName("test_zh"));
            assertEquals(Locale.SIMPLIFIED_CHINESE, fessConfig.getQueryLocaleFromName("test_zh_cn"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .isEqualTo(new File("/C:\\Program Files\\Apache Software Foundation/"));
        assertThat(ClassPath.toFile(new URL("file:///C:\\\u20320 \u22909"))) // Chinese Ni Hao
            .isEqualTo(new File("/C:\\\u20320 \u22909"));
      }
    
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      // https://github.com/google/guava/issues/2152
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    # name-prepped away to nothing.
    # U+200B, U+2060, and U+FEFF, are ignored
    http://GOO\u200b\u2060\ufeffgoo.com  s:http p:/ h:googoo.com
    
    # Ideographic full stop (full-width period for Chinese, etc.) should be
    # treated as a dot.
    # U+3002 is mapped to U+002E (dot)
    http://www.foo\u3002bar.com  s:http p:/ h:www.foo.bar.com
    
    # Invalid unicode characters should fail...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. src/crypto/rsa/rsa.go

    	// complexity.
    	CRTValues []CRTValue
    
    	n, p, q *bigmod.Modulus // moduli for CRT with Montgomery precomputed constants
    }
    
    // CRTValue contains the precomputed Chinese remainder theorem values.
    type CRTValue struct {
    	Exp   *big.Int // D mod (prime-1).
    	Coeff *big.Int // R·Coeff ≡ 1 mod Prime.
    	R     *big.Int // product of primes prior to this (inc p and q).
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // xn--pgbs0dh ("Tunisia", Arabic) : TN
    // http://nic.tn
    تونس
    
    // xn--kpry57d ("Taiwan", Chinese, Traditional) : TW
    // http://www.twnic.net/english/dn/dn_07a.htm
    台灣
    
    // xn--kprw13d ("Taiwan", Chinese, Simplified) : TW
    // http://www.twnic.net/english/dn/dn_07a.htm
    台湾
    
    // xn--nnx388a ("Taiwan", Chinese, variant) : TW
    臺灣
    
    // xn--j1amh ("ukr", Cyrillic) : UA
    укр
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    	}
    
    	return z.norm()
    }
    
    // expNNMontgomeryEven calculates x**y mod m where m = m1 × m2 for m1 = 2ⁿ and m2 odd.
    // It uses two recursive calls to expNN for x**y mod m1 and x**y mod m2
    // and then uses the Chinese Remainder Theorem to combine the results.
    // The recursive call using m1 will use expNNWindowed,
    // while the recursive call using m2 will use expNNMontgomery.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.7.md

    
    ### **Internationalization**
    
    * Add Traditional Chinese translation for kubectl ([#46559](https://github.com/kubernetes/kubernetes/pull/46559), [@warmchang](https://github.com/warmchang))
    
    * Add Japanese translation for kubectl ([#46756](https://github.com/kubernetes/kubernetes/pull/46756), [@girikuncoro](https://github.com/girikuncoro))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/diag/message_test.go

    	g.Expect(m.String()).To(Equal(`Error [IST-0042] (toppings/cheese path/to/file) Cheese type not found: "Feta"`))
    }
    
    func TestMessage_Unstructured(t *testing.T) {
    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST-0042", "Cheese type not found: %q")
    	m := NewMessage(mt, nil, "Feta")
    
    	g.Expect(m.Unstructured(true)).To(Not(HaveKey("origin")))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/query-params-str-validations.md

    Validateurs et métadonnées génériques:
    
    * `alias`
    * `title`
    * `description`
    * `deprecated`
    
    Validateurs spécifiques aux chaînes de caractères :
    
    * `min_length`
    * `max_length`
    * `regex`
    
    Parmi ces exemples, vous avez pu voir comment déclarer des validateurs pour les chaînes de caractères.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    slightly more expressive. * <p/> * For example: * <pre>assertThat(cheese, is(equalTo(smelly)))</pre> * instead of: * <pre>assertThat(cheese, equalTo(smelly))</pre> * */ @Factory public static <T> Matcher<T> is(Matcher<T> matcher) { return new Is<T>(matcher); } /** * A shortcut to the frequently used <code>is(equalTo(x))</code>. * <p/> * For example: * <pre>assertThat(cheese, is(smelly))</pre> * instead of: * <pre>assertThat(cheese, is(equalTo(smelly)))</pre> * */ @Factory public static <T> Matcher<T>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
Back to top