- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for addEntry (0.04 sec)
-
internal/event/target/elasticsearch.go
stop() entryExists(context.Context, string, string) (bool, error) removeEntry(context.Context, string, string) error updateEntry(context.Context, string, string, event.Event) error addEntry(context.Context, string, event.Event) error } // ElasticsearchArgs - Elasticsearch target arguments. type ElasticsearchArgs struct { Enable bool `json:"enable"`
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryResponseTest.java
addrEntryField.setAccessible(true); addrEntryField.set(nameQueryResponse, null); // The toString method appends to super.toString(). We'll check the appended part. String expectedEnd = ",addrEntry=]"; String actual = nameQueryResponse.toString(); assertTrue(actual.endsWith(expectedEnd), "toString should end with ',addrEntry=]' when addrEntry is null");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
} if (response.received && response.resultCode == 0) { final int last = response.addrEntry.length - 1; response.addrEntry[last].hostName.srcHashCode = addr.hashCode(); return response.addrEntry[last]; } } while (--n > 0 && request.isBroadcast); throw new UnknownHostException(name.name);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} if (response.received && response.resultCode == 0) { final int last = response.addrEntry.length - 1; response.addrEntry[last].hostName.srcHashCode = addr.hashCode(); return response.addrEntry[last]; } } while (--n > 0 && request.isBroadcast); throw new UnknownHostException(name.name);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameServicePacketTest.java
assertEquals(NameServicePacket.IN, packet.recordClass); assertEquals(100, packet.ttl); assertEquals(6, packet.rDataLength); assertNotNull(packet.addrEntry); assertEquals(1, packet.addrEntry.length); } @Test void testReadResourceRecordWireFormat_differentRecordName() { byte[] src = new byte[20]; // No pointer, so mockRecordName will be read
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
+ (src[srcIndex + 3] & 0xFF); } static int readNameTrnId(final byte[] src, final int srcIndex) { return readInt2(src, srcIndex); } int addrIndex; NbtAddress[] addrEntry; int nameTrnId; int opCode, resultCode, questionCount, answerCount, authorityCount, additionalCount; boolean received, isResponse, isAuthAnswer, isTruncated, isRecurDesired, isRecurAvailable, isBroadcast;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
+ (src[srcIndex + 3] & 0xFF); } static int readNameTrnId(final byte[] src, final int srcIndex) { return readInt2(src, srcIndex); } int addrIndex; NbtAddress[] addrEntry; int nameTrnId; int opCode, resultCode, questionCount, answerCount, authorityCount, additionalCount; boolean received, isResponse, isAuthAnswer, isTruncated, isRecurDesired, isRecurAvailable, isBroadcast;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0)