- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 475 for estive (0.04 sec)
-
LICENSE
a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Jan 18 20:25:38 UTC 2016 - 25.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
info.setCapability(capability); return info; } private void encodeSockaddr(byte[] buffer, int offset) { // MS-SMB2: SockAddr_Storage field is 128 bytes // Clear the entire field first for (int i = 0; i < 128; i++) { buffer[offset + i] = 0; } if (ipv6) { // IPv6 sockaddr_in6 structure (Windows AF_INET6 = 23)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K bytes - Viewed (0) -
.github/workflows/update-rbe.yml
- name: Update the RBE Configs run: | function map() { # The "digest" that allows us to pull an image is not the digest as # returned by the API, but a sha256sum of the entire chunk of image # metadata. gcr.io helpfully includes it in the header of the response # as docker-content-digest: sha256:[digest]. Note we use egrep to
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Sep 01 15:40:11 UTC 2025 - 7.2K bytes - Viewed (1) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
log.debug("[{}] Dynamic threshold adjustment: {} -> {}", name, oldThreshold, newThreshold); } } /** * Get current active requests count * * @return number of active requests */ public int getActiveRequests() { return activeRequests.get(); } /** * Get average response time *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
+ " for host " + addr.getHostAddress()); } } /** * Get the address of the active WINS server * * @return address of active WINS server */ protected InetAddress getWINSAddress() { return this.transportContext.getConfig().getWinsServers().length == 0 ? null
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
throw e; } } } /** * Checks if RDMA connection is available. * * @return true if RDMA connection is active */ public boolean isRdmaConnected() { synchronized (connectionLock) { return rdmaConnection != null && rdmaConnection.isConnected(); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/contribute/concurrency.md
So we have a dedicated thread for every socket that just reads frames and dispatches them. The reader thread must never run application-layer code. Otherwise one slow stream can hold up the entire connection.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 16:35:36 UTC 2022 - 7K bytes - Viewed (0) -
cmd/site-replication-utils.go
st.Status = siteResyncStatus(st.Status, st.BucketStatuses) st.LastUpdate = UTCNow() sm.resyncStatus[o.resyncID] = st } } } // remove deleted bucket from active resync tracking func (sm *siteResyncMetrics) deleteBucket(b string) { if !globalSiteReplicationSys.isEnabled() { return } sm.Lock() defer sm.Unlock() for _, rs := range sm.peerResyncMap {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* * @return the file name without the full path */ public String getSimpleName() { return new File(path).getName(); } /** * Updates the entire mapping file content from the provided input stream. * * @param in the input stream containing the new mapping file content * @throws IOException if an I/O error occurs during the update */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext.setQueryBuilder(initialQuery); queryContext.addFunctionScore(list -> { list.add(new FilterFunctionBuilder(QueryBuilders.termQuery("status", "active"), ScoreFunctionBuilders.weightFactorFunction(2.0f))); }); QueryBuilder result = queryContext.getQueryBuilder(); assertNotNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0)