- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 112 for laddr (0.04 sec)
-
src/main/java/jcifs/smb1/netbios/NbtSocket.java
} @Override public int getLocalPort() { return super.getLocalPort(); } @Override public String toString() { return "NbtSocket[addr=" + address + ",port=" + super.getPort() + ",localport=" + super.getLocalPort() + "]"; } private void connect() throws IOException { final byte[] buffer = new byte[BUFFER_SIZE]; int type;
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/cmd/asm/internal/arch/loong64.go
"W8": loong64.ARNG_8W, "V4": loong64.ARNG_4V, "Q2": loong64.ARNG_2Q, } // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement. func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex bool) error { var ok bool var arng_type int16 var simd_type int16 switch { case reg >= loong64.REG_V0 && reg <= loong64.REG_V31: simd_type = loong64.LSX
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
void testNetworkProperties() throws CIFSException { // Given Properties props = new Properties(); props.setProperty("jcifs.netbios.wins", "192.168.1.1"); props.setProperty("jcifs.netbios.baddr", "192.168.1.255"); props.setProperty("jcifs.resolveOrder", "WINS,BCAST,DNS"); // When PropertyConfiguration testConfig = new PropertyConfiguration(props); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
bind.decode_out(mockBuffer); // Then verify(mockBuffer, times(5)).dec_ndr_short(); // max xmit, max recv, addr len, result, final short verify(mockBuffer).dec_ndr_long(); // assoc group verify(mockBuffer).advance(10); // secondary addr (length 10) verify(mockBuffer, times(2)).align(4); // alignment calls verify(mockBuffer).dec_ndr_small(); // num results
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
static NbtAddress[] dc_list = null; static long dc_list_expiration; static int dc_list_counter; private static NtlmChallenge interrogate(final NbtAddress addr) throws SmbException { final UniAddress dc = new UniAddress(addr); final SmbTransport trans = SmbTransport.getSmbTransport(dc, 0); if (USERNAME == null) { trans.connect(); if (LogStream.level >= 3) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
assertEquals("server/", root.getName()); } } @Mock DfsReferralData dfs; @Mock Address addr; @Test @DisplayName("Mockito interaction – dependent objects are called appropriately") void testInteractionsWithStubbedDependencies() throws Exception { String url = "smb://server/share/";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
cmd/metrics-v3-cache.go
m := collectLocalMetrics(types, collectMetricsOpts{ hosts: map[string]struct{}{ globalLocalNodeName: {}, }, }) for _, hm := range m.ByHost { if hm.Mem != nil && len(hm.Mem.Info.Addr) > 0 { v = hm.Mem.Info break } } return } return cachevalue.NewFromFunc(1*time.Minute, cachevalue.Opts{ReturnLastGood: true}, loadMemoryMetrics) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
while (addresses.hasMoreElements()) { InetAddress addr = addresses.nextElement(); // Estimate link speed (would need platform-specific code for actual speed) int linkSpeed = ni.isVirtual() ? 100 : 1000; // Default 1Gbps NetworkInterfaceInfo info = new NetworkInterfaceInfo(addr, linkSpeed); if (info.isUsableForChannel()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
src/main/java/jcifs/NetbiosAddress.java
* a member of the group(a.k.a workgroup and domain) <code>BILLING-NY</code>. To * obtain an {@link java.net.InetAddress} for a host one might do: * * <pre> * * InetAddress addr = NbtAddress.getByName("jmorris2").getInetAddress(); * </pre> * * * From a UNIX platform with Samba installed you can perform similar * diagnostics using the <code>nmblookup</code> utility. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
callbacks/update.go
if rows, err := db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...); db.AddError(err) == nil { dest := db.Statement.Dest db.Statement.Dest = db.Statement.ReflectValue.Addr().Interface() gorm.Scan(rows, db, mode) db.Statement.Dest = dest db.AddError(rows.Close()) if db.Statement.Result != nil { db.Statement.Result.RowsAffected = db.RowsAffected } }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 9.6K bytes - Viewed (0)