- Sort Score
- Result 10 results
- Languages All
Results 1961 - 1970 of 3,507 for INT (0.04 sec)
-
docs/de/docs/python-types.md
//// tab | Python 3.8+ ```Python hl_lines="1 4" {!> ../../docs_src/python_types/tutorial007.py!} ``` //// Das bedeutet: * Die Variable `items_t` ist ein `tuple` mit 3 Elementen, einem `int`, einem weiteren `int` und einem `str`. * Die Variable `items_s` ist ein `set`, und jedes seiner Elemente ist vom Typ `bytes`. #### Dict Um ein `dict` zu definieren, รผbergeben Sie zwei Typ-Parameter, getrennt durch Kommas.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 18.9K bytes - Viewed (1) -
cmd/erasure-healing_test.go
ifi.SetInlineData() ifi.Erasure.Index = 1 testCases := []struct { name string metaArr []FileInfo errs []error dataErrs map[int][]int expectedMeta FileInfo expectedDangling bool }{ { name: "FileInfoExists-case1", metaArr: []FileInfo{ {}, {}, fi, fi, }, errs: []error{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 48.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
UNAUTHORIZED(3), /** General failure status. */ FAILED(9); private final int id; Status(final int id) { this.id = id; } /** * Gets the numeric ID of the status. * @return The numeric ID of the status. */ public int getId() { return id; } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
* @author Jon Donovan */ @NullUnmarked @SuppressWarnings("nullness") // TODO: b/384945891 - Remove after fixing checker. public class LocalCache<K, V> implements ConcurrentMap<K, V> { private static final int UNSET_INT = CacheBuilder.UNSET_INT; private final LinkedHashMap<K, Timestamped<V>> cachingHashMap; private final CacheLoader<? super K, V> loader; private final RemovalListener<? super K, ? super V> removalListener;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/AndroidPlatform.kt
).filter { it.isSupported() } @Throws(IOException::class) override fun connectSocket( socket: Socket, address: InetSocketAddress, connectTimeout: Int, ) { try { socket.connect(address, connectTimeout) } catch (e: ClassCastException) { // On android 8.0, socket.connect throws a ClassCastException due to a bug
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu May 29 16:52:38 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosCredentialsTest.java
@Mock private KerberosKey key1; @Mock private KerberosKey key2; private static final String LOGIN_CONTEXT_NAME = "TestLoginContext"; private static final int KEY_TYPE_1 = 1; private static final int KEY_TYPE_2 = 2; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } /** * Test constructor with a valid login context. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java
/** * ResolutionNode */ @Deprecated public class ResolutionNode { private Artifact artifact; private List<ResolutionNode> children; private final List<Object> parents; private final int depth; private final ResolutionNode parent; private final List<ArtifactRepository> remoteRepositories; private boolean active = true; private List<Artifact> trail;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/MonotonicClockTest.java
void testRapidCalls() { Instant[] instants = new Instant[1000]; for (int i = 0; i < instants.length; i++) { instants[i] = MonotonicClock.now(); } // Verify monotonic behavior across all measurements for (int i = 1; i < instants.length; i++) { assertTrue( instants[i].compareTo(instants[i - 1]) >= 0,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 06:28:29 UTC 2025 - 5.8K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/classes-as-dependencies.md
{* ../../docs_src/dependencies/tutorial001.py hl[9] *} ๐ ๐ข โซ๏ธโ **FastAPI** ๐ โ๏ธ "โ" ๐. ๐ฏโโ๏ธ ๐ผ, โซ๏ธ ๐ โ๏ธ: * ๐ฆ `q` ๐ข ๐ข ๐ `str`. * `skip` ๐ข ๐ข ๐ `int`, โฎ๏ธ ๐ข `0`. * `limit` ๐ข ๐ข ๐ `int`, โฎ๏ธ ๐ข `100`. ๐ฏโโ๏ธ ๐ผ ๐ฝ ๐ ๐, โ, ๐ ๐ ๐ ๐, โ๏ธ. ## โ๏ธ โซ๏ธ ๐ ๐ ๐ช ๐ฃ ๐ ๐ โ๏ธ ๐ ๐. {* ../../docs_src/dependencies/tutorial002.py hl[19] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/ExtractorFactoryTest.java
@Override public ExtractData getText(InputStream in, Map<String, String> params) { return null; } @Override public int getWeight() { return 10; } }); assertEquals(10, extractorFactory.getExtractor(key).getWeight()); assertEquals(1, extractorFactory.getExtractors(key)[1].getWeight());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.9K bytes - Viewed (0)