- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for Quux (0.02 seconds)
-
guava-tests/test/com/google/common/collect/HashBiMapTest.java
map.put("bar", 2); map.put("quux", 3); map.inverse().forcePut(1, "quux"); assertThat(map.entrySet()) .containsExactly(immutableEntry("bar", 2), immutableEntry("quux", 1)) .inOrder(); } public void testInverseInsertionOrderAfterInverse() { BiMap<String, Integer> map = HashBiMap.create(); map.put("bar", 2); map.put("quux", 1);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 8.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
parse("http://example.com/foo/bar".toHttpUrl(), "a=b; path=quux")!!.path, ).isEqualTo("/foo") assertThat(parse("http://example.com/foo/bar".toHttpUrl(), "a=b; path=")!!.path) .isEqualTo("/foo") } @Test fun pathAttributeDoesntNeedToMatch() { assertThat(parse("http://example.com/".toHttpUrl(), "a=b; path=/quux")!!.path) .isEqualTo("/quux")
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat Nov 01 12:18:11 GMT 2025 - 24.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java
assertTrue(future.setException(e)); // Later attempts to set the future should return false. assertFalse(future.set(23)); assertFalse(future.setException(new Exception("quux"))); assertFalse(future.setFuture(SettableFuture.create())); // Check that the future has been set properly. assertTrue(future.isDone()); assertFalse(future.isCancelled());
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 17:49:12 GMT 2025 - 7.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java
assertTrue(future.setException(e)); // Later attempts to set the future should return false. assertFalse(future.set(23)); assertFalse(future.setException(new Exception("quux"))); assertFalse(future.setFuture(SettableFuture.create())); // Check that the future has been set properly. assertTrue(future.isDone()); assertFalse(future.isCancelled());
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 17:49:12 GMT 2025 - 7.3K bytes - Click Count (0) -
docs/ru/docs/_llm-test.md
Тесты: ## Фрагменты кода { #code-snippets } //// tab | Тест Это фрагмент кода: `foo`. А это ещё один фрагмент кода: `bar`. И ещё один: `baz quux`. //// //// tab | Информация Содержимое фрагментов кода должно оставаться как есть. См. раздел `### Content of code snippets` в общем промпте в `scripts/translate.py`. ////Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Dec 11 21:25:03 GMT 2025 - 17.5K bytes - Click Count (0) -
docs/es/docs/_llm-test.md
Las pruebas: ## Fragmentos de código { #code-snippets } //// tab | Prueba Este es un fragmento de código: `foo`. Y este es otro fragmento de código: `bar`. Y otro más: `baz quux`. //// //// tab | Información El contenido de los fragmentos de código debe dejarse tal cual. Consulta la sección `### Content of code snippets` en el prompt general en `scripts/translate.py`. ////Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 16 16:16:35 GMT 2025 - 12.6K bytes - Click Count (0) -
docs/de/docs/_llm-test.md
Die Tests: ## Codeschnipsel { #code-snippets } //// tab | Test Dies ist ein Codeschnipsel: `foo`. Und dies ist ein weiteres Codeschnipsel: `bar`. Und noch eins: `baz quux`. //// //// tab | Info Der Inhalt von Codeschnipseln sollte unverändert bleiben. Siehe Abschnitt `### Content of code snippets` im allgemeinen Prompt in `scripts/translate.py`. ////Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 07:17:04 GMT 2025 - 12.6K bytes - Click Count (0) -
docs/en/docs/_llm-test.md
The tests: ## Code snippets { #code-snippets } //// tab | Test This is a code snippet: `foo`. And this is another code snippet: `bar`. And another one: `baz quux`. //// //// tab | Info Content of code snippets should be left as is. See section `### Content of code snippets` in the general prompt in `scripts/translate.py`. //// ## Quotes { #quotes }Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Dec 11 14:48:47 GMT 2025 - 11.4K bytes - Click Count (0) -
docs/pt/docs/_llm-test.md
Os testes: ## Trechos de código { #code-snippets } //// tab | Teste Este é um trecho de código: `foo`. E este é outro trecho de código: `bar`. E mais um: `baz quux`. //// //// tab | Informações O conteúdo dos trechos de código deve ser deixado como está. Veja a seção `### Content of code snippets` no prompt geral em `scripts/translate.py`. ////Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 10:17:03 GMT 2025 - 12.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
} public void testValues() { LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder()); map.put("foo", "bar"); map.put("baz", "bar"); map.put("quux", "quux"); assertThat(map.values() instanceof Set).isFalse(); assertThat(map.values().removeAll(ImmutableSet.of("bar"))).isTrue(); assertThat(map).hasSize(1); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 12 00:25:21 GMT 2025 - 117.5K bytes - Click Count (0)