- Sort Score
- Num 10 results
- Language All
Results 2211 - 2220 of 5,779 for classe (0.13 seconds)
-
guava/src/com/google/common/collect/Platform.java
import org.jspecify.annotations.Nullable; /** * Methods factored out so that they can be emulated differently in GWT. * * @author Hayward Chan */ @GwtCompatible final class Platform { /** Returns the platform preferred implementation of a map based on a hash table. */ static <K extends @Nullable Object, V extends @Nullable Object> Map<K, V> newHashMapWithExpectedSize(int expectedSize) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jan 23 17:16:53 GMT 2026 - 4.7K bytes - Click Count (0) -
docs/uk/docs/how-to/custom-request-and-route.md
# Користувацькі класи Request та APIRoute { #custom-request-and-apiroute-class } У деяких випадках ви можете захотіти перевизначити логіку, яку використовують класи `Request` та `APIRoute`. Зокрема, це може бути доброю альтернативою логіці в проміжному програмному забезпеченні. Наприклад, якщо потрібно прочитати або змінити тіло запиту до того, як його обробить ваш застосунок. /// danger | Обережно Це «просунута» можливість.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 6.8K bytes - Click Count (0) -
docs/tr/docs/how-to/custom-request-and-route.md
# Özel Request ve APIRoute sınıfı { #custom-request-and-apiroute-class } Bazı durumlarda, `Request` ve `APIRoute` sınıflarının kullandığı mantığı override etmek isteyebilirsiniz. Özellikle bu yaklaşım, bir middleware içindeki mantığa iyi bir alternatif olabilir. Örneğin, request body uygulamanız tarafından işlenmeden önce okumak veya üzerinde değişiklik yapmak istiyorsanız. /// danger | Uyarı Bu "ileri seviye" bir özelliktir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/Hc5IdnDnsResolver.java
/** * The {@code Hc5IdnDnsResolver} class implements the {@code DnsResolver} interface * for Apache HttpComponents 5.x to provide DNS resolution with support for * Internationalized Domain Names (IDN). * It converts Unicode domain names to ASCII Compatible Encoding (ACE) using the * {@link java.net.IDN} class. * * <p>This class allows setting a custom flag for the IDN conversion and a customCreated: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jan 04 13:09:59 GMT 2026 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItemMerger.java
/** * Utility class for merging SuggestItem objects. * Centralizes merge logic to reduce complexity in SuggestItem. * * <p>This class provides methods for merging two SuggestItem instances, * combining their fields, frequencies, and other attributes while * maintaining uniqueness where appropriate. */ public final class SuggestItemMerger { private SuggestItemMerger() {Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 5.4K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NbtAddress.java
import java.net.UnknownHostException; import jcifs.Address; import jcifs.CIFSContext; import jcifs.NetbiosAddress; import jcifs.NetbiosName; /** * This class represents a NetBIOS over TCP/IP address. Under normal * conditions, users of jCIFS need not be concerned with this class as * name resolution and session services are handled internally by the smb package. * * * * Applications can use the methods <code>getLocalHost</code>,
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.1K bytes - Click Count (0) -
docs/zh-hant/docs/python-types.md
```Python hl_lines="1" {!> ../../docs_src/python_types/tutorial009_py310.py!} ``` //// 使用 `str | None` 而不是單純的 `str`,可以讓編輯器幫你偵測錯誤,例如你以為某個值一定是 `str`,但它其實也可能是 `None`。 ### 類別作為型別 { #classes-as-types } 你也可以用類別來宣告變數的型別。 假設你有一個 `Person` 類別,帶有名稱: {* ../../docs_src/python_types/tutorial010_py310.py hl[1:3] *} 接著你可以宣告一個變數為 `Person` 型別:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
assertThrows(IllegalArgumentException.class, () -> base64().withSeparator("=", 3)); assertThrows( IllegalArgumentException.class, () -> base64().withPadChar('#').withSeparator("!#!", 3)); } public void testAtMostOneSeparator() { BaseEncoding separated = base64().withSeparator("\n", 3); assertThrows(UnsupportedOperationException.class, () -> separated.withSeparator("$", 4)); }
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) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/PreparePatchRelease.kt
import java.net.URI import java.net.http.HttpClient import java.net.http.HttpRequest import java.net.http.HttpResponse private data class GradleServicesVersion(val version: String, val buildTime: String) @DisableCachingByDefault(because = "Not worth caching") abstract class PreparePatchRelease : DefaultTask() { @get:Internal abstract val versionFile: RegularFileProperty @get:Internal
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:47:12 GMT 2026 - 2.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapMakerTest.java
@GwtCompatible @J2ktIncompatible // MapMaker @NullUnmarked public class MapMakerTest extends TestCase { @GwtIncompatible // NullPointerTester public void testNullParameters() throws Exception { NullPointerTester tester = new NullPointerTester(); tester.testAllPublicInstanceMethods(new MapMaker()); } @GwtIncompatible // threads static final class DelayingIdentityLoader<T> implements Function<T, T> {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 2.8K bytes - Click Count (0)