Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 306 for butter (0.17 seconds)

  1. android/guava/src/com/google/common/graph/GraphBuilder.java

     * graph.putEdge("chocolate", "peanut butter");
     * graph.putEdge("peanut butter", "jelly");
     *
     * // Building an immutable graph
     * ImmutableGraph<String> immutableGraph =
     *     GraphBuilder.undirected()
     *         .allowsSelfLoops(true)
     *         .<String>immutable()
     *         .putEdge("bread", "bread")
     *         .putEdge("chocolate", "peanut butter")
     *         .putEdge("peanut butter", "jelly")
     *         .build();
     * }
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    ter\ndyn-berlin\u0008dyn-ip24\u000fdynamisches-dns\u0007dyndns1\u0006frusky\u000ffuettertdasnetz\u0009git-repos\u0004goip\u0010g\u00fcnstigbestellen\u000eg\u00fcnstigliefern\u000ehome-webserver\u000chs-heilbronn\u0009in-berlin\u0006in-brb\u0009in-butter\u0006in-dsl\u0006in-vpn\u000cinternet-dns\u000biservschule\nisteingeek\u0007istmein\nkeymachine\u0009l-o-g-i-n\u000clcube-server\nlebtimnetz\nleitungsen\nmein-iserv\nmy-gateway\u0009my-router\rmyhome-server\u0003rub\u000fruhr-uni-bochum\u0009schu...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

     * if (forceCacheResponse.code() != 504) {
     *   // The resource was cached! Show it.
     * } else {
     *   // The resource was not cached.
     * }
     * ```
     *
     * This technique works even better in situations where a stale response is better than no response.
     * To permit stale cached responses, use the `max-stale` directive with the maximum staleness in
     * seconds:
     *
     * ```java
     * Request request = new Request.Builder()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 09:13:37 GMT 2026
    - 26.9K bytes
    - Click Count (0)
  4. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

            } else {
              var buffer = Buffer()
              requestBody.writeTo(buffer)
    
              var gzippedLength: Long? = null
              if ("gzip".equals(headers["Content-Encoding"], ignoreCase = true)) {
                gzippedLength = buffer.size
                GzipSource(buffer).use { gzippedResponseBody ->
                  buffer = Buffer()
                  buffer.writeAll(gzippedResponseBody)
                }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Nov 07 02:57:33 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt

    import okhttp3.internal.http2.Header.Companion.TARGET_PATH
    import okhttp3.internal.http2.Header.Companion.TARGET_SCHEME
    import okhttp3.internal.unmodifiable
    import okio.Buffer
    import okio.BufferedSource
    import okio.ByteString
    import okio.Source
    import okio.buffer
    
    /**
     * Read and write HPACK v10.
     *
     * http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12
     *
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:02:18 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt

        byteCount: Int,
        inFinished: Boolean,
      ) {
        val buffer = Buffer()
        source.require(byteCount.toLong()) // Eagerly read the frame before firing client thread.
        source.read(buffer, byteCount.toLong())
        pushQueue.execute("$connectionName[$streamId] onData") {
          ignoreIoExceptions {
            val cancel = pushObserver.onData(streamId, buffer, byteCount, inFinished)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 31.9K bytes
    - Click Count (0)
  7. CONTRIBUTING.md

    #### Accepting multiple changes
    
    If you have multiple changes to accept (and you're sure they ought to be accepted instead of corrected), you can use the `Accept Changes for all Errors` button to speed the process.
    This button will cause a Javascript alert dialog to appear asking you to type a reason for accepting the changes, e.g. "Added new API for Gradle 8.x".
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/Streams.java

       * stream is empty.
       *
       * <p>Equivalent to {@code stream.reduce((a, b) -> b)}, but may perform significantly better. This
       * method's runtime will be between O(log n) and O(n), performing better on <a
       * href="http://gee.cs.oswego.edu/dl/html/StreamParallelGuidance.html">efficiently splittable</a>
       * streams.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 36.8K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    					</h4>
    					<button type="button" class="close" data-dismiss="modal"
    						aria-label="Close">
    						<span aria-hidden="true">×</span>
    					</button>
    				</div>
    				<div class="modal-body">
    					<p>
    						<la:message key="labels.crud_delete_confirmation" />
    					</p>
    				</div>
    				<div class="modal-footer justify-content-between">
    					<button type="button" class="btn btn-secondary" autofocus
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                    <button type="button" class="close" data-dismiss="modal"
                                                            aria-label="Close">
                                                        <span aria-hidden="true">×</span>
                                                    </button>
                                                </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.1K bytes
    - Click Count (0)
Back to Top