- Sort Score
- Result 10 results
- Languages All
Results 3981 - 3990 of 6,965 for _class (0.14 sec)
-
src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java
/** * SMB1 NetServerEnum2 request message for enumerating network servers in a domain or workgroup. * This class implements the SMB1 transaction to query for available servers, supporting various * server types and filtering options for network browsing functionality. */ public class NetServerEnum2 extends SmbComTransaction { /** * Server type filter for all servers */Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
import jcifs.util.Hexdump; /** * Trans2 FindNext2 request message for SMB1 directory enumeration continuation. * This class implements the TRANS2_FIND_NEXT2 transaction to retrieve subsequent * directory entries after a Trans2FindFirst2 request, supporting large directory listings. */ public class Trans2FindNext2 extends SmbComTransaction { private final int sid, informationLevel; private int resumeKey;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/em/docs/tutorial/body-updates.md
# ๐ช - โน ## โน โ โฎ๏ธ `PUT` โน ๐ฌ ๐ ๐ช โ๏ธ <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT" class="external-link" target="_blank">๐บ๐ธ๐ `PUT`</a> ๐ ๏ธ. ๐ ๐ช โ๏ธ `jsonable_encoder` ๐ ๐ข ๐ฝ ๐ ๐ ๐ช ๐ช ๐ป (โ โฎ๏ธ โ ๐ฝ). ๐ผ, ๐ญ `datetime` `str`. {* ../../docs_src/body_updates/tutorial001.py hl[30:35] *} `PUT` โ๏ธ ๐จ ๐ฝ ๐ ๐ โ โป ๐ฝ. ### โ ๐ โ ๐ โ ๐ ๐ฅ ๐ ๐ โน ๐ฌ `bar` โ๏ธ `PUT` โฎ๏ธ ๐ช โ: ```Python {
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 11:27:35 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/ko/docs/advanced/using-request-directly.md
ํ์ง๋ง `Request` ๊ฐ์ฒด์ ์ง์ ์ ๊ทผํด์ผ ํ๋ ์ํฉ์ด ์์ ์ ์์ต๋๋ค. ## `Request` ๊ฐ์ฒด์ ๋ํ ์ธ๋ถ ์ฌํญ **FastAPI**๋ ์ค์ ๋ก ๋ด๋ถ์ **Starlette**์ ์ฌ์ฉํ๋ฉฐ, ๊ทธ ์์ ์ฌ๋ฌ ๋๊ตฌ๋ฅผ ๋ง๋ถ์ธ ๊ตฌ์กฐ์ ๋๋ค. ๋ฐ๋ผ์ ์ฌ๋ฌ๋ถ์ด ํ์ํ ๋ Starlette์ <a href="https://www.starlette.io/requests/" class="external-link" target="_blank">`Request`</a> ๊ฐ์ฒด๋ฅผ ์ง์ ์ฌ์ฉํ ์ ์์ต๋๋ค. `Request` ๊ฐ์ฒด์์ ๋ฐ์ดํฐ๋ฅผ ์ง์ ๊ฐ์ ธ์ค๋ ๊ฒฝ์ฐ(์: ๋ณธ๋ฌธ์ ์ฝ๊ธฐ)์๋ FastAPI๊ฐ ํด๋น ๋ฐ์ดํฐ๋ฅผ ๊ฒ์ฆํ๊ฑฐ๋ ๋ณํํ์ง ์์ผ๋ฉฐ, ๋ฌธ์ํ(OpenAPI๋ฅผ ํตํ ๋ฌธ์ ์๋ํ(๋ก ์์ฑ๋) API ์ฌ์ฉ์ ์ธํฐํ์ด์ค)๋ ๋์ง ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.7K bytes - Viewed (0) -
okhttp/src/commonTest/kotlin/okhttp3/OkHttpTest.kt
package okhttp3 import assertk.assertThat import assertk.assertions.matches import org.junit.jupiter.api.Test class OkHttpTest { @Test fun testVersion() { assertThat(OkHttp.VERSION).matches(Regex("[0-9]+\\.[0-9]+\\.[0-9]+(-.+)?")) }Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 247 bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt
* * If the chain is for an application interceptor then [exchange] must be null. Otherwise it is for * a network interceptor and [exchange] must be non-null. */ class RealInterceptorChain( internal val call: RealCall, private val interceptors: List<Interceptor>, private val index: Int, internal val exchange: Exchange?, internal val request: Request,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 4.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/StatsBenchmark.java
import java.util.Random; import org.jspecify.annotations.NullUnmarked; /** * Benchmarks for various algorithms for computing the mean and/or variance. * * @author Louis Wasserman */ @NullUnmarked public class StatsBenchmark { enum MeanAlgorithm { SIMPLE { @Override double mean(double[] values) { double sum = 0.0; for (double value : values) { sum += value; }Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceAllTester.java
// @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") @IgnoreJRERequirement // We opt into library desugaring for our tests. public class MapReplaceAllTester<K, V> extends AbstractMapTester<K, V> { private SampleElements<K> keys() { return new SampleElements<>(k0(), k1(), k2(), k3(), k4()); } private SampleElements<V> values() {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 4.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMultimap.java
* * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingMultimap}. * * @author Robert Konigsberg * @since 2.0 */ @GwtCompatible public abstract class ForwardingMultimap<K extends @Nullable Object, V extends @Nullable Object>Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 4.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSet.java
* override {@code addAll} as well, either providing your own implementation, or delegating to the * provided {@code standardAddAll} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingSet}. *Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0)