Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of over 10,000 for of (0.03 seconds)

  1. docs/en/docs/async.md

    And as most of the execution time is taken by actual work (instead of waiting), and the work in a computer is done by a <abbr title="Central Processing Unit">CPU</abbr>, they call these problems "CPU bound".
    
    ---
    
    Common examples of CPU bound operations are things that require complex math processing.
    
    For example:
    
    * **Audio** or **image processing**.
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-05 18:13
    - 23.4K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/body-nested-models.md

    {* ../../docs_src/body_nested_models/tutorial005_py310.py hl[2,8] *}
    
    The string will be checked to be a valid URL, and documented in JSON Schema / OpenAPI as such.
    
    ## Attributes with lists of submodels { #attributes-with-lists-of-submodels }
    
    You can also use Pydantic models as subtypes of `list`, `set`, etc.:
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-05 18:13
    - 6.6K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Would it be of any use, now,' thought Alice, `to speak to this
    mouse?  Everything is so out-of-the-way down here, that I should
    think very likely it can talk:  at any rate, there's no harm in
    trying.'  So she began:  `O Mouse, do you know the way out of
    this pool?  I am very tired of swimming about here, O Mouse!'
    (Alice thought this must be the right way of speaking to a mouse:
    Created: 2026-04-03 12:43
    - Last Modified: 2012-10-29 21:35
    - 145.2K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/math/DoubleMath.java

       * the arithmetic mean of the population.
       *
       * @param values a nonempty series of values, which will be converted to {@code double} values
       *     (this may cause loss of precision for longs of magnitude over 2^53 (slightly over 9e15))
       * @throws IllegalArgumentException if {@code values} is empty
    Created: 2026-04-03 12:43
    - Last Modified: 2025-08-07 16:05
    - 19.3K bytes
    - Click Count (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

        }
    
        /**
         * Gets the group id of the unresolvable model.
         *
         * @return The group id of the unresolvable model, can be empty but never {@code null}.
         */
        public String getGroupId() {
            return groupId;
        }
    
        /**
         * Gets the artifact id of the unresolvable model.
         *
         * @return The artifact id of the unresolvable model, can be empty but never {@code null}.
         */
    Created: 2026-04-05 03:35
    - Last Modified: 2025-02-25 08:27
    - 3.9K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/util/concurrent/Striped.java

     * either of these extremes, {@code Striped} allows the user to trade between required concurrency
     * and memory footprint. For example, if a set of tasks are CPU-bound, one could easily create a
     * very compact {@code Striped<Lock>} of {@code availableProcessors() * 4} stripes, instead of
     * possibly thousands of locks which could be created in a {@code Map<K, Lock>} structure.
     *
    Created: 2026-04-03 12:43
    - Last Modified: 2025-09-16 22:01
    - 20.6K bytes
    - Click Count (0)
  7. compat/maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

        /**
         * Gets the one-based index of the column containing the problem. The column number should refer to some text file
         * that is given by {@link #getSource()}.
         *
         * @return The one-based index of the column containing the problem or non-positive value if unknown.
         */
        int getColumnNumber();
    
        /**
         * Gets the location of the problem. The location is a user-friendly combination of the values from
    Created: 2026-04-05 03:35
    - Last Modified: 2025-01-15 18:51
    - 3.4K bytes
    - Click Count (0)
  8. guava/src/com/google/common/base/Preconditions.java

     * <p>It is of course possible to use the methods of this class to check for invalid conditions
     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
     * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
    Created: 2026-04-03 12:43
    - Last Modified: 2026-01-08 18:10
    - 53.5K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/graph/Traverser.java

       */
      public final Iterable<N> breadthFirst(N startNode) {
        return breadthFirst(ImmutableSet.of(startNode));
      }
    
      /**
       * Returns an unmodifiable {@code Iterable} over the nodes reachable from any of the {@code
       * startNodes}, in the order of a breadth-first traversal. This is equivalent to a breadth-first
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-11 01:10
    - 19.3K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/ForwardingSortedSet.java

     * override one or more methods to modify the behavior of the backing sorted set as desired per the
     * <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingSortedSet} forward <i>indiscriminately</i> to
     * the methods of the delegate. For example, overriding {@link #add} alone <i>will not</i> change
    Created: 2026-04-03 12:43
    - Last Modified: 2025-02-12 16:28
    - 5.7K bytes
    - Click Count (0)
Back to Top