Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for undo (0.02 sec)

  1. guava/src/com/google/common/collect/ComparisonChain.java

      /**
       * Discouraged synonym for {@link #compareFalseFirst}.
       *
       * @deprecated Use {@link #compareFalseFirst}; or, if the parameters passed are being either
       *     negated or reversed, undo the negation or reversal and use {@link #compareTrueFirst}.
       * @since 19.0
       */
      @InlineMe(replacement = "this.compareFalseFirst(left, right)")
      @Deprecated
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        /*
         * TODO(cpovirk): `return (V) removedValue` once our checker permits that.
         *
         * (We promoted a class of warnings into errors because sometimes they indicate real problems.
         * But now we need to "undo" some instance of spurious errors, as discussed in
         * https://github.com/jspecify/checker-framework/issues/8.)
         */
        return removedValue == null ? null : (V) removedValue;
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  3. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    um.gov.pl
    umaji.kochi.jp
    umb.it
    umbria.it
    umi.fukuoka.jp
    umig.gov.pl
    unazuki.toyama.jp
    under.jp
    undo.jp
    uni5.net
    unicloud.pl
    unicom
    union.aero
    unison-services.cloud
    univ.bj
    univ.sn
    university
    unjarga.no
    unjárga.no
    unnan.shimane.jp
    uno
    unusualperson.com
    unzen.nagasaki.jp
    uol
    uonuma.niigata.jp
    uozu.toyama.jp
    up.in
    upli.io
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  4. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    um.gov.pl
    umaji.kochi.jp
    umb.it
    umbria.it
    umi.fukuoka.jp
    umig.gov.pl
    unazuki.toyama.jp
    under.jp
    undo.jp
    uni5.net
    unicloud.pl
    unicom
    union.aero
    unison-services.cloud
    univ.bj
    univ.sn
    university
    unjarga.no
    unjárga.no
    unnan.shimane.jp
    uno
    unusualperson.com
    unzen.nagasaki.jp
    uol
    uonuma.niigata.jp
    uozu.toyama.jp
    up.in
    upli.io
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  5. android/guava-tests/test/com/google/common/collect/TableCollectorsTest.java

            .expectCollects(
                new ImmutableTable.Builder<String, String, Integer>()
                    .put("one", "uno", 1)
                    .put("two", "dos", 2)
                    .put("three", "tres", 3)
                    .buildOrThrow(),
                immutableCell("one", "uno", 1),
                immutableCell("two", "dos", 2),
                immutableCell("three", "tres", 3));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. docs/de/README.md

    ## Erste Schritte
    
    Es gibt zwei Möglichkeiten, Fess auszuprobieren. Die erste besteht darin, es selbst herunterzuladen und zu installieren. Die zweite besteht darin, [Docker](https://www.docker.com/products/docker-engine) zu verwenden.
    
    ### Herunterladen und Installieren/Ausführen
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/bootstrap.min.css.map

    normal;\n  line-height: inherit;\n}\n\nol,\nul,\ndl {\n  margin-top: 0;\n  margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n  margin-bottom: 0;\n}\n\ndt {\n  font-weight: $dt-font-weight;\n}\n\ndd {\n  margin-bottom: .5rem;\n  margin-left: 0; // Undo browser default\n}\n\nblockquote {\n  margin: 0 0 1rem;\n}\n\nb,\nstrong {\n  font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n  @include font-size(80%); // Add the correct font size in all...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 639.3K bytes
    - Viewed (1)
  8. src/main/resources/fess_message_de.properties

    constraints.Past.message = {item} muss ein vergangener Wert sein.
    constraints.Pattern.message = {item} stimmt nicht mit "{regexp}" überein.
    constraints.Size.message = Die Größe von {item} muss zwischen {min} und {max} liegen.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} ist eine ungültige Kreditkartennummer.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        mIntegerToSpanish.put(1, "Uno");
        mIntegerToSpanish.put(3, "Tres");
        mIntegerToSpanish.put(4, "Cuatro");
        Function<Integer, String> integerToSpanish = Functions.forMap(mIntegerToSpanish);
    
        Function<String, String> japaneseToSpanish =
            Functions.compose(integerToSpanish, japaneseToInteger);
    
        assertEquals("Uno", japaneseToSpanish.apply("Ichi"));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    unicom
    
    // university : Binky Moon, LLC
    // https://www.iana.org/domains/root/db/university.html
    university
    
    // uno : Radix Technologies Inc.
    // https://www.iana.org/domains/root/db/uno.html
    uno
    
    // uol : UBN INTERNET LTDA.
    // https://www.iana.org/domains/root/db/uol.html
    uol
    
    // ups : UPS Market Driver, Inc.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
Back to top