- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 261 for Trigger (0.04 sec)
-
src/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java
assertTrue(ex.getMessage().contains("Malformed Kerberos Ticket")); } @Test @DisplayName("byte[] ctor: top-level non-SEQUENCE triggers PACDecodingException (type mismatch)") void byteArrayConstructor_topLevelNotSequence_throws() throws Exception { // Arrange: Encoded INTEGER instead of SEQUENCE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java
} // A random value that cannot be 0 and that is unsigned-less-than or equal // to the given dividend, so that we don't have half of our divisions being // trivial because the divisor is bigger than the dividend. // Using remainder here does not give us a uniform distribution but it should // not have a big impact on the measurement. private static long randomDivisor(long dividend) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 4.4K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
, ๐ ๐ช ๐ค-โ๏ธ ๐ ๐ (๐ ๐จ ๐ฒ) ๐ โช โ๏ธ ๐ฑ ๐, & โ๏ธ ๐ฒ ๐ ๐ซ โ๏ธ, ๐ ๐ ๐ ๏ธ: {* ../../docs_src/dependencies/tutorial006.py hl[9,14] *} ## ๐ ๐ช *โก ๐ ๏ธ* โช, ๐โ ๐ ๐ โ ๐ ๐ฆ ๐ธ ([๐ฆ ๐ธ - ๐ ๐](../../tutorial/bigger-applications.md){.internal-link target=_blank}), ๐ฒ โฎ๏ธ ๐ ๐, ๐ ๐ ๐ก โ ๐ฃ ๐ `dependencies` ๐ข ๐ช *โก ๐ ๏ธ*. ## ๐ ๐
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
SmbTreeImpl tree = mock(SmbTreeImpl.class); when(tree.acquire(false)).thenReturn(tree); when(tree.acquire()).thenReturn(tree); setTree(c, tree); // Act: first acquire triggers tree.acquire() c.acquire(); verify(tree, times(1)).acquire(); // Act: second acquire does not call tree.acquire again c.acquire(); verify(tree, times(1)).acquire();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
* API machinery's httpstream/spdy calls now support CIDR notation for NO_PROXY ([#54413](https://github.com/kubernetes/kubernetes/pull/54413), [@kad](https://github.com/kad)) * fix a bug where disk pressure could trigger prematurely when using overlay2 ([#53684](https://github.com/kubernetes/kubernetes/pull/53684), [@dashpole](https://github.com/dashpole))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java
if (!GUAVA_PACKAGES.contains(info.getPackageName())) { continue; } if ( /* * At least one of the classes nested inside TypeResolverTest triggers a bug under older JDKs: * https://bugs.openjdk.org/browse/JDK-8215328 -> https://bugs.openjdk.org/browse/JDK-8215470
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 03:07:54 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/en/docs/tutorial/testing.md
And your **FastAPI** application might also be composed of several files/modules, etc. ### **FastAPI** app file { #fastapi-app-file } Let's say you have a file structure as described in [Bigger Applications](bigger-applications.md){.internal-link target=_blank}: ``` . โโโ app โย ย โโโ __init__.py โย ย โโโ main.py ``` In the file `main.py` you have your **FastAPI** app:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/ko/docs/tutorial/testing.md
/// ## ํ ์คํธ ๋ถ๋ฆฌํ๊ธฐ ์ค์ ์ ํ๋ฆฌ์ผ์ด์ ์์๋ ํ ์คํธ๋ฅผ ๋ณ๋์ ํ์ผ๋ก ๋๋๋ ๊ฒฝ์ฐ๊ฐ ๋ง์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ **FastAPI** ์ ํ๋ฆฌ์ผ์ด์ ๋ ์ฌ๋ฌ ํ์ผ์ด๋ ๋ชจ๋ ๋ฑ์ผ๋ก ๊ตฌ์ฑ๋ ์ ์์ต๋๋ค. ### **FastAPI** app ํ์ผ [Bigger Applications](bigger-applications.md){.internal-link target=_blank} ์ ๋ฌ์ฌ๋ ํ์ผ ๊ตฌ์กฐ๋ฅผ ๊ฐ์ง๊ณ ์๋ ๊ฒ์ผ๋ก ๊ฐ์ ํด๋ด ์๋ค. ``` . โโโ app โย ย โโโ __init__.py โย ย โโโ main.py ``` `main.py` ํ์ผ ์์ **FastAPI** app ์ ๋ง๋ค์์ต๋๋ค:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 11:24:48 UTC 2024 - 7.6K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
## Abhรคngigkeiten fรผr eine Gruppe von *Pfadoperationen* Wenn Sie spรคter lesen, wie Sie grรถรere Anwendungen strukturieren ([Grรถรere Anwendungen โ Mehrere Dateien](../../tutorial/bigger-applications.md){.internal-link target=_blank}), mรถglicherweise mit mehreren Dateien, lernen Sie, wie Sie einen einzelnen `dependencies`-Parameter fรผr eine Gruppe von *Pfadoperationen* deklarieren. ## Globale Abhรคngigkeiten
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/de/docs/advanced/settings.md
## Einstellungen in einem anderen Modul Sie kรถnnten diese Einstellungen in eine andere Moduldatei einfรผgen, wie Sie in [Grรถรere Anwendungen โ mehrere Dateien](../tutorial/bigger-applications.md){.internal-link target=_blank} gesehen haben. Sie kรถnnten beispielsweise eine Datei `config.py` haben mit: {* ../../docs_src/settings/app01/config.py *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 16.4K bytes - Viewed (0)