Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 689 for Uuser1 (0.03 sec)

  1. samples/slack/src/main/java/okhttp3/slack/RtmStartResponse.java

    import java.util.List;
    import okhttp3.HttpUrl;
    
    /** See https://api.slack.com/methods/rtm.start. */
    public final class RtmStartResponse {
      HttpUrl url;
      Object self;
      Object team;
      List<Object> users;
      List<Object> channels;
      List<Object> groups;
      List<Object> mpims;
      List<Object> ims;
      List<Object> bots;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Oct 23 15:24:22 UTC 2016
    - 943 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/escape/Escapers.java

       * null} if no replacement should be made. This method is intended for use in tests through the
       * {@code EscaperAsserts} class; production users of {@link CharEscaper} should limit themselves
       * to its public interface.
       *
       * @param c the character to escape if necessary
       * @return the replacement string, or {@code null} if no escaping was needed
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/CharSink.java

       *
       * @throws IOException if an I/O error occurs while writing to this sink
       * @since 33.4.0 (but since 22.0 in the JRE flavor)
       */
      @IgnoreJRERequirement // Users will use this only if they're already using Stream.
      public void writeLines(Stream<? extends CharSequence> lines) throws IOException {
        writeLines(lines, LINE_SEPARATOR.value());
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:07:06 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/metadata.md

        * `url` (**requerido**): un `str` con la URL para la documentación externa.
    
    ### Crear metadata para etiquetas
    
    Probemos eso en un ejemplo con etiquetas para `users` y `items`.
    
    Crea metadata para tus etiquetas y pásala al parámetro `openapi_tags`:
    
    {* ../../docs_src/metadata/tutorial004.py hl[3:16,18] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/metadata.md

         * `url` (**erforderlich**): ein `str` mit der URL für die externe Dokumentation.
    
    ### Metadaten für Tags erstellen
    
    Versuchen wir das an einem Beispiel mit Tags für `users` und `items`.
    
    Erstellen Sie Metadaten für Ihre Tags und übergeben Sie sie an den Parameter `openapi_tags`:
    
    {* ../../docs_src/metadata/tutorial004.py hl[3:16,18] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. README.md

    [guava.dev/api](https://guava.dev/api). You can also jump right to a specific
    class by appending the class name to guava.dev. For example,
    [guava.dev/ImmutableList](https://guava.dev/ImmutableList)!
    
    ## Learn about Guava
    
    -   Our users' guide, [Guava Explained]
    -   [A nice collection](https://www.tfnico.com/presentations/google-guava) of
        other helpful links
    
    ## Links
    
    -   [GitHub project](https://github.com/google/guava)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 05 15:30:14 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

          // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
          // For these users fallback to a suboptimal implementation, based on synchronized. This will
          // be a definite performance hit to those users.
          thrownReflectionFailure = reflectionFailure;
          helper = new SynchronizedAtomicHelper();
        }
        ATOMIC_HELPER = helper;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

            return OptionalEntity.empty();
        }
    
        /**
         * Returns the user entity based on the provided form data, applying any necessary transformations.
         *
         * @param form the form containing user data for retrieval and update
         * @return optional user entity populated from the form
         */
        public static OptionalEntity<User> getUser(final CreateForm form) {
            return getEntity(form).map(entity -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Ticker.java

    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
     * <p><b>Warning:</b> this interface can only be used to measure elapsed time, not wall time.
     *
     * @author Kevin Bourrillion
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/metadata.md

    {* ../../docs_src/metadata/tutorial002.py hl[3] *}
    
    If you want to disable the OpenAPI schema completely you can set `openapi_url=None`, that will also disable the documentation user interfaces that use it.
    
    ## Docs URLs { #docs-urls }
    
    You can configure the two documentation user interfaces included:
    
    * **Swagger UI**: served at `/docs`.
        * You can set its URL with the parameter `docs_url`.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top