Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,258 for bread (0.37 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        closed = true
    
        if (!started) return // Nothing to shut down.
        val serverSocket = this.serverSocket ?: return // If this is null, start() must have failed.
    
        // Cause acceptConnections() to break out.
        serverSocket.closeQuietly()
    
        // Await shutdown.
        for (queue in taskRunner.activeQueues()) {
          if (!queue.idleLatch().await(5, TimeUnit.SECONDS)) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    func isObjectDangling(metaArr []FileInfo, errs []error, dataErrsByPart map[int][]int) (validMeta FileInfo, ok bool) {
    	// We can consider an object data not reliable
    	// when xl.meta is not found in read quorum disks.
    	// or when xl.meta is not readable in read quorum disks.
    	notFoundMetaErrs, nonActionableMetaErrs := danglingMetaErrsCount(errs)
    
    	notFoundPartsErrs, nonActionablePartsErrs := 0, 0
    	for _, dataErrs := range dataErrsByPart {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                                /* If WINS reports negative, no point in retry
                                 */
                                break;
                            }
                        }
                        break;
                    }
                } catch (final IOException ioe) {}
            }
            throw new UnknownHostException(name.name);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * look at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily
         * cause a concurrent read operation to see inconsistent data. This is made easier by the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  5. cmd/object_api_suite_test.go

    			if err != nil {
    				t.Fatalf("%s: <ERROR> %s", instanceType, err)
    			}
    			token = result.NextContinuationToken
    			if len(result.Objects) == 0 {
    				break
    			}
    			for _, obj := range result.Objects {
    				checkObjCount[obj.Name]--
    			}
    			if token == "" {
    				break
    			}
    		}
    		for key, value := range checkObjCount {
    			if value != 0 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.5K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    		if len(abandonedChildren) == 0 || !f.shouldHeal() {
    			// If we are not heal scanning, return now.
    			break
    		}
    
    		if len(f.disks) == 0 || f.disksQuorum == 0 {
    			break
    		}
    
    		bgSeq, found := globalBackgroundHealState.getHealSequenceByToken(bgHealingUUID)
    		if !found {
    			break
    		}
    
    		// Whatever remains in 'abandonedChildren' are folders at this level
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * File being created or opened must not be a directory
         */
        public static final int FILE_NON_DIRECTORY_FILE = 0x40;
        /**
         * Complete this operation immediately with an oplock break if it would break an oplock
         */
        public static final int FILE_COMPLETE_IF_OPLOCKED = 0x100;
        /**
         * The client does not understand extended attributes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  8. cmd/metacache-walk.go

    			// Conservative forwarding. Entries may be either objects or prefixes.
    			for i, entry := range entries {
    				if entry >= forward || strings.HasPrefix(forward, entry) {
    					entries = entries[i:]
    					break
    				}
    			}
    		}
    
    		for _, entry := range entries {
    			if contextCanceled(ctx) {
    				return ctx.Err()
    			}
    			if opts.Limit > 0 && objsReturned >= opts.Limit {
    				return nil
    			}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 26 07:06:43 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    		host = hosts[rng.Intn(len(hosts))]
    		conn, err := d.DialContext(ctx, "tcp", host)
    		cancel()
    		if err != nil {
    			retry++
    			continue
    		}
    		conn.Close()
    		break
    	}
    
    	return host
    }
    
    // IsCompressed returns true if the object is marked as compressed.
    func (o *ObjectInfo) IsCompressed() bool {
    	_, ok := o.UserDefined[ReservedMetadataPrefix+"compression"]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jun 25 15:08:54 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NbtException.java

                    break;
                case NO_RESOURCES:
                    result.append("Called name present, but insufficient resources");
                    break;
                case UNSPECIFIED:
                    result.append("Unspecified error");
                    break;
                default:
                    result.append("Unknown error code: ").append(errorCode);
                }
                break;
            default:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top