- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for firstName (0.05 sec)
-
src/test/java/jcifs/AddressTest.java
when(mockAddress.firstCalledName()).thenReturn(expectedFirstName); // When String firstName = mockAddress.firstCalledName(); // Then assertEquals(expectedFirstName, firstName, "Should return first called name"); assertNotNull(firstName, "First called name should not be null"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java
public void test_getName_cachesBehavior() { // Test that getName() caches the result after first call String firstName = rankFusionSearcher.getName(); String secondName = rankFusionSearcher.getName(); assertSame(firstName, secondName); assertEquals("test_rank_fusion", firstName); } public void test_getName_customSearcherClass() { // Test with different searcher implementation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimap.java
* ListMultimap<String, String> multimap = ArrayListMultimap.create(); * for (President pres : US_PRESIDENTS_IN_ORDER) { * multimap.put(pres.firstName(), pres.lastName()); * } * for (String firstName : multimap.keySet()) { * List<String> lastNames = multimap.get(firstName); * out.println(firstName + ": " + lastNames); * } * } * * ... produces output such as: * * {@snippet : * Zachary: [Taylor]
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 15.7K bytes - Viewed (0) -
docs/en/docs/python-types.md
```Python first_name, last_name ``` to: ```Python first_name: str, last_name: str ``` That's it. Those are the "type hints": {* ../../docs_src/python_types/tutorial002.py hl[1] *} That is not the same as declaring default values like would be with: ```Python first_name="john", last_name="doe" ``` It's a different thing.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.1K bytes - Viewed (0) -
docs/fa/docs/python-types.md
پارامتر اول تابع، `first_name` رو تایپ میکنی، بعد یه نقطه (`.`) میذاری و `Ctrl+Space` رو میزنی تا تکمیل خودکار بیاد. ولی متأسفانه، چیز مفیدی نمیگیری: <img src="/img/python-types/image01.png"> ### نوع اضافه کن بیا فقط یه خط از نسخه قبلی رو تغییر بدیم. دقیقاً این بخش، پارامترهای تابع رو، از: ```Python first_name, last_name ``` به: ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jul 21 12:20:57 UTC 2025 - 23.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Monitor.java
throws InterruptedException { boolean firstTime = true; try { do { if (nanos <= 0L) { return false; } if (firstTime) { if (signalBeforeWaiting) { signalNextWaiter(); } beginWaitingFor(guard); firstTime = false; } nanos = guard.condition.awaitNanos(nanos);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
) val response = call.execute() assertThat(response.body.string()).isEqualTo("ABC") assertThat(response.protocol).isEqualTo(protocol) val logs = testLogHandler.takeAll() assertThat(firstFrame(logs, "HEADERS")!!, "header logged") .contains("HEADERS END_STREAM|END_HEADERS") } @ParameterizedTest @ArgumentsSource(ProtocolParamProvider::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0)