- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 647 for nulled (0.04 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
* * @return maximum message size in bytes */ int getMaxMessageSize(); /** * Clean up provider resources * * This method should be called when the provider is no longer needed * to release any system resources. */ void shutdown();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
tensorflow/c/c_api.h
// // Any NULL and non-NULL value combinations for (`run_options`, // `run_metadata`) are valid. // // - `run_options` may be NULL, in which case it will be ignored; or // non-NULL, in which case it must point to a `TF_Buffer` containing the // serialized representation of a `RunOptions` protocol buffer. // - `run_metadata` may be NULL, in which case it will be ignored; or
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/ShareEnumIteratorTest.java
} @Test @DisplayName("Null parent with non-empty iterator causes NullPointerException during adapt") void nullParent_throwsNPE() { List<FileEntry> entries = Collections.singletonList(entry("x", SmbConstants.TYPE_SHARE)); assertThrows(NullPointerException.class, () -> new ShareEnumIterator(null, entries.iterator(), null)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcLsarCloseTest.java
// Create an instance of MsrpcLsarClose MsrpcLsarClose msrpcLsarClose = new MsrpcLsarClose(mockPolicyHandle); // Assert that the object is not null assertNotNull(msrpcLsarClose, "MsrpcLsarClose object should not be null"); // Verify that the constructor correctly sets ptype and flags // These values are inherited from LsarClose, but MsrpcLsarClose sets them in its constructor
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveIfTester.java
assertFalse( "removeIf(Predicate) should return false or throw UnsupportedOperationException", collection.removeIf( x -> { throw new AssertionError("predicate should never be called"); })); } catch (UnsupportedOperationException tolerated) { } expectUnchanged(); } @CollectionFeature.Require(absent = SUPPORTS_REMOVE) @CollectionSize.Require(absent = ZERO)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 4.2K bytes - Viewed (0) -
src/bufio/bufio.go
b.r++ b.lastByte = int(c) return c, nil } // UnreadByte unreads the last byte. Only the most recently read byte can be unread. // // UnreadByte returns an error if the most recent method called on the // [Reader] was not a read operation. Notably, [Reader.Peek], [Reader.Discard], and [Reader.WriteTo] are not // considered read operations. func (b *Reader) UnreadByte() error {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
int result = mockNetbiosName.getNameType(); // Then assertEquals(nameType, result); } @Test @DisplayName("Should handle null name") void testNullName() { // Given when(mockNetbiosName.getName()).thenReturn(null); // When String name = mockNetbiosName.getName(); // Then assertNull(name); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
assertEquals("b", result[1]); assertEquals("c", result[2]); } public void test_distinct_withNullElements() { // Test distinct with null elements String[] input = new String[] { "a", null, "b", null, "a" }; String[] result = invokeDistinct(input); assertEquals(3, result.length); assertEquals("a", result[0]); assertNull(result[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
testData.add(createRelatedQuery("test", new String[] { "related1", "related2" }, "")); mockBhv.setTestData(testData); relatedQueryHelper.init(); // Verify that load was called and data is processed String[] results = relatedQueryHelper.getRelatedQueries("test"); assertEquals(2, results.length); assertEquals("related1", results[0]); assertEquals("related2", results[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0)