- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 123 for addErr (0.1 sec)
-
scan.go
for idx, field := range fields { if field != nil { values[idx] = field.NewValuePool.Get() } else if len(fields) == 1 { if reflectValue.CanAddr() { values[idx] = reflectValue.Addr().Interface() } else { values[idx] = reflectValue.Interface() } } } db.RowsAffected++ db.AddError(rows.Scan(values...)) joinedNestedSchemaMap := make(map[string]interface{})
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
public static class RdmaChannelInfo { private final int remoteKey; private final long address; private final int length; public RdmaChannelInfo(int key, long addr, int len) { this.remoteKey = key; this.address = addr; this.length = len; } // Getters... } ``` ## 6. Configuration ### 6.1 Configuration Properties ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/en/docs/contributing.md
Go into the language directory, for the main docs in English it's at `docs/en/`: ```console $ cd docs/en/ ``` Then run `mkdocs` in that directory: ```console $ mkdocs serve --dev-addr 127.0.0.1:8008 ``` /// #### Typer CLI (optional) The instructions here show you how to use the script at `./scripts/docs.py` with the `python` program directly.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
api/go1.7.txt
pkg net/http/httptrace, type ClientTrace struct, WroteRequest func(WroteRequestInfo) pkg net/http/httptrace, type DNSDoneInfo struct pkg net/http/httptrace, type DNSDoneInfo struct, Addrs []net.IPAddr pkg net/http/httptrace, type DNSDoneInfo struct, Coalesced bool pkg net/http/httptrace, type DNSDoneInfo struct, Err error pkg net/http/httptrace, type DNSStartInfo struct
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 28 15:08:11 UTC 2016 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
Name questionName; Name recordName; int questionType, questionClass, recordType, recordClass, ttl, rDataLength; InetAddress addr; NameServicePacket() { isRecurDesired = true; isBroadcast = true; questionCount = 1; questionClass = IN; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
Name questionName; Name recordName; int questionType, questionClass, recordType, recordClass, ttl, rDataLength; InetAddress addr; protected Configuration config; NameServicePacket(final Configuration config) { this.config = config; this.isRecurDesired = true; this.isBroadcast = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 11.1K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm64.go
} return int64(reg&31)<<16 | int64(op)<<22 | int64(uint16(count)), nil } // ARM64RegisterExtension constructs an ARM64 register with extension or arrangement. func ARM64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex bool) error { Rnum := (reg & 31) + int16(num<<5) if isAmount { if num < 0 || num > 7 { return errors.New("index shift amount is out of range") } }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
// seems to be correct according to // https://lists.samba.org/archive/samba-technical/2009-August/066486.html // UniAddress addr = UniAddress.getByName(authDomain, true, tf); // SmbTransport trans = tf.getTransportPool().getSmbTransport(tf, addr, 0); try (SmbTransport dc = getDc(tf, authDomain)) { final CacheEntry<Map<String, CacheEntry<DfsReferralDataInternal>>> entry =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
cmd/admin-handlers_test.go
lris = append(lris, lri) locksHeld[resource] = append(locksHeld[resource], lri) } var peerLocks []*PeerLocks for _, owner := range owners { peerLocks = append(peerLocks, &PeerLocks{ Addr: owner, Locks: locksHeld, }) } var exp madmin.LockEntries for _, lri := range lris { lockType := func(lri lockRequesterInfo) string { if lri.Writer { return "WRITE" }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 13.9K bytes - Viewed (0) -
cmd/globals.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1)