- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 2,900 for TRUE (0.2 sec)
-
cmd/metacache_test.go
t.Errorf("baseDirFromPrefix() = %v, want %v", got, tt.want) } }) } } func Test_metacache_finished(t *testing.T) { wantResults := []bool{0: true, 1: true, 2: true, 3: true, 4: false, 5: true, 6: true, 7: false, 8: true} for i, tt := range metaCacheTestset { t.Run(tt.id, func(t *testing.T) { var want bool if i >= len(wantResults) { t.Logf("no expected result for test #%d", i)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Sep 08 18:06:45 UTC 2021 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
assertEquals("\\Qhttps://example.com\\E.*", parser.parseFilterPaths("https://example.com", true, false)); assertEquals("\\Qfile://test\\E.*", parser.parseFilterPaths("file://test", true, false)); assertEquals("\\Qtest\\E", parser.parseFilterPaths("test", true, false)); assertEquals("", parser.parseFilterPaths("# comment\n\n ", true, false)); } public void test_parseFilterPaths_file() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
List<WebConfig> configList = crawlingConfigHelper.getAllWebConfigList(true, true, false, null); assertEquals(1, configList.size()); // Test with idList parameter List<String> idList = List.of("W1", "W2"); configList = crawlingConfigHelper.getAllWebConfigList(true, true, true, idList); assertEquals(1, configList.size()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
if (o.equals(items[i])) { removeAt(i); return true; } i = inc(i); } } finally { monitor.leave(); } } /** * Returns {@code true} if this queue contains the specified element. More formally, returns * {@code true} if and only if this queue contains at least one element {@code e} such that {@code * o.equals(e)}.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassLoaderIteratorTest.java
assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameInstance(cl3))); assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameInstance(cl2))); assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameInstance(cl1))); assertThat(it.hasNext(), is(not(true))); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (0) -
.github/workflows/notify-translations.yml
- name: Setup tmate session uses: mxschmitt/action-tmate@v3 if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }} with: limit-access-to-actor: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Notify Translations run: python ./scripts/notify_translations.py env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 1.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt
taskRunner.withLock { shutdown = true if (cancelAllAndDecide()) { taskRunner.kickCoordinator(this) } } } /** Returns true if the coordinator is impacted. */ internal fun cancelAllAndDecide(): Boolean { if (activeTask != null && activeTask!!.cancelable) { cancelActiveTask = true } var tasksCanceled = false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 7.3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
try { InternetDomainName unused = from(name); return true; } catch (IllegalArgumentException e) { return false; } } /** * If a {@code desiredType} is specified, returns true only if the {@code actualType} is * identical. Otherwise, returns true as long as {@code actualType} is present. */ private static boolean matchesType(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/InfoTest.java
fileAttr.setAccessible(true); fileAttr.setInt(resp, 0xABCD); java.lang.reflect.Field lastWrite = SmbComQueryInformationResponse.class.getDeclaredField("lastWriteTime"); lastWrite.setAccessible(true); lastWrite.setLong(resp, 1630000000000L);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/00-bug.yml
render: shell validations: required: true - type: textarea id: what-did-you-do attributes: label: "What did you do?" description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best." validations: required: true - type: textarea id: actual-behavior attributes:
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 3.3K bytes - Viewed (0)