- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 2,208 for white (0.03 sec)
-
guava/src/com/google/common/collect/FilteredEntryMultimap.java
- }
- boolean removeEntriesIf(Predicate<? super Entry<K, Collection<V>>> predicate) {
- Iterator<Entry<K, Collection<V>>> entryIterator = unfiltered.asMap().entrySet().iterator();
- boolean changed = false;
- while (entryIterator.hasNext()) {
- Entry<K, Collection<V>> entry = entryIterator.next();
- K key = entry.getKey();
- Collection<V> collection = filterCollection(entry.getValue(), new ValuePredicate(key));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 12.1K bytes - Viewed (0) -
cmd/bucket-handlers.go
- // Get current region.
- region := globalSite.Region()
- if region != globalMinioDefaultRegion {
- encodedSuccessResponse = encodeResponse(LocationResponse{
- Location: region,
- })
- }
- // Write success response.
- writeSuccessResponseXML(w, encodedSuccessResponse)
- }
- // ListMultipartUploadsHandler - GET Bucket (List Multipart uploads)
- // -------------------------
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 63.4K bytes - Viewed (0) -
ci/official/envs/public_cache_push
- # limitations under the License.
- # ==============================================================================
- # Sourcing this enables Bazel remote cache (read and write)
- # Note that "_push" cache configs write to GCS buckets and require
- # authentication. If you are not a Googler, source "public_cache" to enable the
- # public read-only cache.
- # The cache configs are different for MacOS and Linux
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 1.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java
- }
- List<Element> tmp = Lists.newArrayList(elementsInSet);
- shuffle(tmp, random);
- queryList.addAll(tmp.subList(0, extras));
- }
- // now add bad queries
- while (queryList.size() < numQueries) {
- Element candidate = newElement();
- if (!elementsInSet.contains(candidate)) {
- queryList.add(candidate);
- }
- }
- shuffle(queryList, random);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TestLocking.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.4K bytes - Viewed (0) -
guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/Platform.java
- // start substituting the arguments into the '%s' placeholders
- StringBuilder builder = new StringBuilder(template.length() + 16 * args.length);
- int templateStart = 0;
- int i = 0;
- while (i < args.length) {
- int placeholderStart = template.indexOf("%s", templateStart);
- if (placeholderStart == -1) {
- break;
- }
- builder.append(template.substring(templateStart, placeholderStart));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.1K bytes - Viewed (0) -
cmd/metacache-walk.go
- if s.walkReadMu != nil {
- s.walkReadMu.Unlock()
- }
- diskHealthCheckOK(ctx, err)
- if err != nil {
- // It is totally possible that xl.meta was overwritten
- // while being concurrently listed at the same time in
- // such scenarios the 'xl.meta' might get truncated
- if !IsErrIgnored(err, io.EOF, io.ErrUnexpectedEOF) {
- internalLogOnceIf(ctx, err, "metacache-walk-read-metadata")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Jun 01 05:17:37 UTC 2024 - 12.4K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip
window.open("", "list", "dependent=yes,location=no,menubar=yes,resizable=yes,toolbar=no,scrollbars=yes,width=500,height=400"); list.document.close(); list.document.open(); list.document.write("<html><head><style type=\"text/css\">"); list.document.write("body { font-family:Helvetica,Arial,sans-serif; } "); list.document.write(".link { cursor:pointer;text-decoration:underline; } "); list.document.writeln("th { background-color:#aaaaaa; } </style></head><body>"); list.document.writeln(text); list.documen...
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 23.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-ResponseBodyCommon.kt
- internal fun ByteArray.commonToResponseBody(contentType: MediaType?): ResponseBody {
- return Buffer()
- .write(this)
- .asResponseBody(contentType, size.toLong())
- }
- internal fun ByteString.commonToResponseBody(contentType: MediaType?): ResponseBody {
- return Buffer()
- .write(this)
- .asResponseBody(contentType, size.toLong())
- }
- internal fun BufferedSource.commonAsResponseBody(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.3K bytes - Viewed (0) -
cmd/storage-datatypes.go
- DataDir string `msg:"dd"`
- // Indicates if this object is still in V1 format.
- XLV1 bool `msg:"v1"`
- // Date and time when the file was last modified, if Deleted
- // is 'true' this value represents when while was deleted.
- ModTime time.Time `msg:"mt"`
- // Total file size.
- Size int64 `msg:"sz"`
- // File mode bits.
- Mode uint32 `msg:"m"`
- // WrittenByVersion is the unix time stamp of the MinIO
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 17.3K bytes - Viewed (0)