Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sandbox (0.22 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

       * Supports-Loading-Mode}</a> header field name. This can be used to specify, for example, <a
       * href="https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/#server-opt-in">fenced
       * frames</a>.
       *
       * @since 32.0.0
       */
      public static final String SUPPORTS_LOADING_MODE = "Supports-Loading-Mode";
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Monitor.java

     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
     * logical conditions being awaited.
     *
     * <pre>{@code
     * public class SafeBox<V> {
     *   private V value;
     *
     *   public synchronized V get() throws InterruptedException {
     *     while (value == null) {
     *       wait();
     *     }
     *     V result = value;
     *     value = null;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 18:22:01 GMT 2023
    - 38.6K bytes
    - Viewed (0)
Back to top