- Sort Score
- Num 10 results
- Language All
Results 411 - 420 of 510 for TestId (0.05 seconds)
-
guava-gwt/pom.xml
like to get an error. Currently we do, but if we add the extra <inherits> lines, we won't. I have one idea for a better approach, but it's painful, and I haven't tested it: We could postprocess Collect.gwt.xml to add <skip> lines for all the files that should be covered by testModule.gwt.xml. Maybe I'll try it someday.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 12 15:19:17 GMT 2026 - 18.2K bytes - Click Count (0) -
docs/zh/docs/features.md
* 支持复杂的用户身份认证系统,**数据库连接**等等。 * **不依赖**数据库,前端等。但是和它们集成很简单。 ### 无限制的“插件” { #unlimited-plug-ins } 或者说,导入并使用你需要的代码,而不需要它们。 任何集成都被设计得被易于使用(用依赖关系),你可以用和*路径操作*相同的结构和语法,在两行代码中为你的应用创建一个“插件”。 ### 测试 { #tested } * 100% <dfn title="自动测试的代码量">测试覆盖</dfn>。 * 代码库100% <dfn title="Python 类型注解,有了这个你的编辑器和外部工具可以给你更好的支持">类型注释</dfn>。 * 用于生产应用。 ## Starlette 特性 { #starlette-features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.7K bytes - Click Count (0) -
src/cmd/asm/internal/lex/input.go
if tok != scanner.Ident { in.expectText("expected identifier after '#'") } if !in.enabled() { // Can only start including again if we are at #else or #endif but also // need to keep track of nested #if[n]defs. // We let #line through because it might affect errors. switch in.Stack.Text() { case "else", "endif", "ifdef", "ifndef", "line": // Press on. default: return false } }Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Nov 12 03:59:40 GMT 2025 - 12.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java
* version: * <ul> * <li>the unreleased <b>staged</b>, M.N-2.0 (N > 2) on the `M.(N-2)` branch</li> * </ul> * <p> * Each build is only concerned with versions before it, as those are the ones that need to be tested * for backwards compatibility. We never look forward, and don't add forward facing version number to branches of previous * version. * <p>
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 16.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
* declare any methods in this enum, converting assertFailsToDecode into a static method that is * implemented with a `switch`. I haven't tested that.) */ @GwtIncompatible // decodingStream(Reader) DECODING_STREAM { @Override void assertFailsToDecode(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 24.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
&& method.getParameterTypes().length != 0 // only the seeded hash functions && !method.getName().equals("concatenating") // don't test Hashing.concatenating() && !method.getName().equals("goodFastHash") // tested in testGoodFastHashEquals && !method.getName().startsWith("hmac")) { // skip hmac functions Object[] params1 = new Object[method.getParameterTypes().length];
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 26.7K bytes - Click Count (2) -
internal/bucket/lifecycle/lifecycle.go
return false } for _, rule := range lc.Rules { if rule.Status == Disabled { continue } if len(prefix) > 0 && len(rule.GetPrefix()) > 0 { // we can skip this rule if it doesn't match the tested // prefix. if !strings.HasPrefix(prefix, rule.GetPrefix()) && !strings.HasPrefix(rule.GetPrefix(), prefix) { continue } } if rule.NoncurrentVersionExpiration.NoncurrentDays > 0 {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Apr 03 06:45:06 GMT 2025 - 18.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
} @Test public void test_ProtwordsUpdater_fileCreationException() { // This test verifies that ProtwordsUpdater constructor properly handles exceptions // The actual exception handling is tested by ensuring the updater can be created // and properly closed even when errors might occur protwordsFile.reload(null); // Test normal creation and cleanup of ProtwordsUpdaterCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectSpliterators.java
} /* * @IgnoreJRERequirement should be redundant with the one on Streams itself, but it's necessary * as of Animal Sniffer 1.24. Maybe Animal Sniffer processes this nested class before it * processes Streams and thus hasn't had a chance to see Streams's annotation? */ @IgnoreJRERequirement final class WithCharacteristics implements Spliterator<T> {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 20.5K bytes - Click Count (0) -
docs/zh-hant/docs/features.md
* 不與資料庫、前端等進行強制綁定,但能輕鬆整合它們。 ### 無限制「擴充功能」 { #unlimited-plug-ins } 或者說,無需其他額外配置,直接導入並使用你所需要的程式碼。 任何整合都被設計得非常簡單易用(通過依賴注入),你只需用與*路徑操作*相同的結構和語法,用兩行程式碼就能為你的應用程式建立一個「擴充功能」。 ### 測試 { #tested } * 100% <dfn title="自動化測試所涵蓋的程式碼量">測試覆蓋率</dfn>。 * 100% <dfn title="Python 型別註解;有了它你的編輯器和外部工具可以提供更好的支援">型別註解</dfn>的程式碼庫。 * 已能夠在生產環境應用程式中使用。 ## Starlette 特性 { #starlette-features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 9.2K bytes - Click Count (0)