- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 503 for _score (0.05 sec)
-
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
for (NetworkInterfaceInfo info : response.getInterfaces()) { if (info.isUsableForChannel()) { remoteInterfaces.add(info); } } // Sort by score (best interfaces first) remoteInterfaces.sort((a, b) -> Integer.compare(b.getScore(), a.getScore())); log.debug("Discovered {} remote network interfaces", remoteInterfaces.size()); }
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/internal/smb2/multichannel/ChannelLoadBalancer.java
int totalWeight = 0; for (ChannelInfo channel : channels) { totalWeight += channel.getScore(); } if (totalWeight == 0) { // All channels have zero score, pick randomly List<ChannelInfo> list = new ArrayList<>(channels); return list.get(ThreadLocalRandom.current().nextInt(list.size())); } // Weighted random selection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
} /** * Stores a job log entry in the database. * Performs an insert or update operation based on whether the job log already exists. * * @param jobLog the job log to store */ public void store(final JobLog jobLog) { jobLogBhv.insertOrUpdate(jobLog, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/erasure/README.md
The drives should all be of approximately the same size. ## Get Started with MinIO in Erasure Code ### 1. Prerequisites Install MinIO - [MinIO Quickstart Guide](https://docs.min.io/community/minio-object-store/operations/deployments/baremetal-deploy-minio-on-redhat-linux.html)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/en/docs/tutorial/encoder.md
There are some cases where you might need to convert a data type (like a Pydantic model) to something compatible with JSON (like a `dict`, `list`, etc). For example, if you need to store it in a database. For that, **FastAPI** provides a `jsonable_encoder()` function. ## Using the `jsonable_encoder` { #using-the-jsonable-encoder }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 1.7K bytes - Viewed (0) -
docs/metrics/prometheus/README.md
This document explains how to setup Prometheus and configure it to scrape data from MinIO servers. ## Prerequisites To get started with MinIO, refer [MinIO QuickStart Document](https://docs.min.io/community/minio-object-store/operations/deployments/baremetal-deploy-minio-on-redhat-linux.html). Follow below steps to get started with MinIO monitoring using Prometheus. ### 1. Download Prometheus
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheControlTest.kt
.maxStale(2.seconds) .minFresh(3.seconds) .onlyIfCached() .noTransform() .immutable() .build() assertThat(cacheControl.toString()).isEqualTo( "no-cache, no-store, max-age=1, max-stale=2, min-fresh=3, only-if-cached, no-transform, immutable", ) assertThat(cacheControl.noCache).isTrue() assertThat(cacheControl.noStore).isTrue()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java
for (Object aSet : set) { Artifact artifact = (Artifact) aSet; System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion() + " Scope: " + artifact.getScope()); assertTrue( artifact.getVersion().equals("1.0"), "Incorrect version for " + artifact.getDependencyConflictId()); } }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 2.9K bytes - Viewed (0) -
cmd/build-constants.go
MinioReleaseBaseURL = "https://dl.min.io/server/minio/release/" // MinioReleaseURL - release URL. MinioReleaseURL = MinioReleaseBaseURL + minioOSARCH + SlashSeparator // MinioStoreName - MinIO store name. MinioStoreName = "MinIO" // MinioUAName - MinIO user agent name. MinioUAName = "MinIO" // MinioBannerName - MinIO banner name for startup message. MinioBannerName = "MinIO Object Storage Server"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 01 17:57:52 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
*/ Integer getPageThumbnailPurgeMaxFetchSizeAsInteger(); /** * Get the value for the key 'page.score.booster.max.fetch.size'. <br> * The value is, e.g. 1000 <br> * comment: Maximum number of score booster records to fetch per page. * @return The value of found property. (NotNull: if not found, exception but basically no way) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)