Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Newton (0.03 sec)

  1. guava/src/com/google/common/math/BigIntegerMath.java

         *
         * We start out with a double-precision approximation, which may be higher or lower than the
         * true value. Therefore, we perform at least one Newton iteration to get a guess that's
         * definitely >= floor(sqrt(x)), and then continue the iteration until we reach a fixed point.
         */
        BigInteger sqrt0;
        int log2 = log2(x, FLOOR);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeMultiset.java

            AvlNode<E> newTop = pred();
            // newTop is the maximum node in my left subtree
            newTop.left = left.removeMax(newTop);
            newTop.right = right;
            newTop.distinctElements = distinctElements - 1;
            newTop.totalCount = totalCount - oldElemCount;
            return newTop.rebalance();
          } else {
            AvlNode<E> newTop = succ();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.boost_document_rule_boost_expr=Expression de boost
    labels.boost_document_rule_sort_order=Ordre de tri
    labels.access_token_configuration=Jeton d'accès
    labels.access_token_title_details=Jeton d'accès
    labels.access_token_list_name=Nom
    labels.access_token_name=Nom
    labels.access_token_token=Jeton
    labels.access_token_expires=Expire
    labels.access_token_parameter_name=Nom du paramètre
    labels.access_token_updated_time=Date de création
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_fr.properties

    errors.failed_to_download_mapping_file = Échec du téléchargement d'un fichier de mappage.
    errors.failed_to_upload_mapping_file = Échec du téléversement d'un fichier de mappage.
    errors.invalid_kuromoji_token={0} n'est pas valide en tant que jeton.
    errors.invalid_kuromoji_segmentation=Le nombre de segmentations pour {0} et {1} est différent.
    errors.invalid_str_is_included = {1} n'est pas valide pour {0}.
    errors.blank_password = Le mot de passe est requis.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

    import java.util.Set;
    import java.util.concurrent.atomic.AtomicBoolean;
    import org.jspecify.annotations.Nullable;
    
    /**
     * An implementation of {@link GraphConnections} for directed graphs.
     *
     * @author James Sexton
     * @author Jens Nyman
     * @param <N> Node parameter type
     * @param <V> Value parameter type
     */
    final class DirectedGraphConnections<N, V> implements GraphConnections<N, V> {
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Network.java

     *       Synchronization policy</a>
     *   <li><a href="https://github.com/google/guava/wiki/GraphsExplained#notes-for-implementors">Notes
     *       for implementors</a>
     * </ul>
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @param <N> Node parameter type
     * @param <E> Edge parameter type
     * @since 20.0
     */
    @Beta
    @DoNotMock("Use NetworkBuilder to create a real instance")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graphs.java

    import java.util.Queue;
    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Static utility methods for {@link Graph}, {@link ValueGraph}, and {@link Network} instances.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @since 20.0
     */
    @Beta
    public final class Graphs extends GraphsBridgeMethods {
    
      private Graphs() {}
    
      // Graph query methods
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Graphs.java

    import java.util.Queue;
    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Static utility methods for {@link Graph}, {@link ValueGraph}, and {@link Network} instances.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @since 20.0
     */
    @Beta
    public final class Graphs extends GraphsBridgeMethods {
    
      private Graphs() {}
    
      // Graph query methods
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 23.3K bytes
    - Viewed (0)
Back to top