Search Options

Results per page
Sort
Preferred Languages
Advance

Results 451 - 460 of 2,208 for white (0.03 sec)

  1. guava/src/com/google/common/collect/FilteredEntryMultimap.java

    1. }
    2.  
    3. boolean removeEntriesIf(Predicate<? super Entry<K, Collection<V>>> predicate) {
    4. Iterator<Entry<K, Collection<V>>> entryIterator = unfiltered.asMap().entrySet().iterator();
    5. boolean changed = false;
    6. while (entryIterator.hasNext()) {
    7. Entry<K, Collection<V>> entry = entryIterator.next();
    8. K key = entry.getKey();
    9. 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)
  2. cmd/bucket-handlers.go

    1. // Get current region.
    2. region := globalSite.Region()
    3. if region != globalMinioDefaultRegion {
    4. encodedSuccessResponse = encodeResponse(LocationResponse{
    5. Location: region,
    6. })
    7. }
    8.  
    9. // Write success response.
    10. writeSuccessResponseXML(w, encodedSuccessResponse)
    11. }
    12.  
    13. // ListMultipartUploadsHandler - GET Bucket (List Multipart uploads)
    14. // -------------------------
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 12:24:04 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  3. ci/official/envs/public_cache_push

    1. # limitations under the License.
    2. # ==============================================================================
    3. # Sourcing this enables Bazel remote cache (read and write)
    4. # Note that "_push" cache configs write to GCS buckets and require
    5. # authentication. If you are not a Googler, source "public_cache" to enable the
    6. # public read-only cache.
    7. # 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)
  4. android/guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java

    1. }
    2. List<Element> tmp = Lists.newArrayList(elementsInSet);
    3. shuffle(tmp, random);
    4. queryList.addAll(tmp.subList(0, extras));
    5. }
    6.  
    7. // now add bad queries
    8. while (queryList.size() < numQueries) {
    9. Element candidate = newElement();
    10. if (!elementsInSet.contains(candidate)) {
    11. queryList.add(candidate);
    12. }
    13. }
    14. 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)
  5. src/main/java/jcifs/smb1/smb1/TestLocking.java

    1. d.listFiles();
    2. // System.out.print('l');
    3. } else if (r < 1.0) {
    4. InputStream in = f.getInputStream();
    5. while (in.read(buf) > 0) {
    6. // System.out.print('r');
    7. }
    8. in.close();
    9. }
    10. } catch (IOException ioe) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  6. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/Platform.java

    1. // start substituting the arguments into the '%s' placeholders
    2. StringBuilder builder = new StringBuilder(template.length() + 16 * args.length);
    3. int templateStart = 0;
    4. int i = 0;
    5. while (i < args.length) {
    6. int placeholderStart = template.indexOf("%s", templateStart);
    7. if (placeholderStart == -1) {
    8. break;
    9. }
    10. 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)
  7. cmd/metacache-walk.go

    1. if s.walkReadMu != nil {
    2. s.walkReadMu.Unlock()
    3. }
    4. diskHealthCheckOK(ctx, err)
    5. if err != nil {
    6. // It is totally possible that xl.meta was overwritten
    7. // while being concurrently listed at the same time in
    8. // such scenarios the 'xl.meta' might get truncated
    9. if !IsErrIgnored(err, io.EOF, io.ErrUnexpectedEOF) {
    10. 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)
  8. 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)
  9. okhttp/src/main/kotlin/okhttp3/internal/-ResponseBodyCommon.kt

    1. internal fun ByteArray.commonToResponseBody(contentType: MediaType?): ResponseBody {
    2. return Buffer()
    3. .write(this)
    4. .asResponseBody(contentType, size.toLong())
    5. }
    6.  
    7. internal fun ByteString.commonToResponseBody(contentType: MediaType?): ResponseBody {
    8. return Buffer()
    9. .write(this)
    10. .asResponseBody(contentType, size.toLong())
    11. }
    12.  
    13. 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)
  10. cmd/storage-datatypes.go

    1. DataDir string `msg:"dd"`
    2.  
    3. // Indicates if this object is still in V1 format.
    4. XLV1 bool `msg:"v1"`
    5.  
    6. // Date and time when the file was last modified, if Deleted
    7. // is 'true' this value represents when while was deleted.
    8. ModTime time.Time `msg:"mt"`
    9.  
    10. // Total file size.
    11. Size int64 `msg:"sz"`
    12.  
    13. // File mode bits.
    14. Mode uint32 `msg:"m"`
    15.  
    16. // 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)
Back to top