Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for abacat (0.04 seconds)

  1. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

        doTestTrimTrailingFrom("x-xx", "x-xx");
        doTestTrimTrailingFrom("x-x--xx---x----x", "x-x--xx---x----x");
        // additional testing using the doc example
        assertThat(anyOf("ab").trimTrailingFrom("abacatbab")).isEqualTo("abacat");
      }
    
      private void doTestTrimTrailingFrom(String in, String out) {
        // Try a few different matchers which all match '-' and not 'x'
        assertThat(is('-').trimTrailingFrom(in)).isEqualTo(out);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * {@snippet :
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * {@snippet :
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  4. docs/tr/docs/advanced/security/http-basic-auth.md

    Sonra `secrets.compare_digest()` kullanarak `credentials.username`’in `"stanleyjobson"` ve `credentials.password`’ün `"swordfish"` olduğundan emin olabiliriz.
    
    {* ../../docs_src/security/tutorial007_an_py310.py hl[1,12:24] *}
    
    Bu, kabaca şuna benzer olurdu:
    
    ```Python
    if not (credentials.username == "stanleyjobson") or not (credentials.password == "swordfish"):
        # Bir hata döndür
        ...
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  5. docs/tr/docs/environment-variables.md

    Sistem `python` programını `/opt/custompython/bin` içinde **bulur** ve çalıştırır.
    
    Bu, kabaca şunu yazmaya denktir:
    
    <div class="termy">
    
    ```console
    $ /opt/custompython/bin/python
    ```
    
    </div>
    
    ////
    
    //// tab | Windows
    
    Sistem `python` programını `C:\opt\custompython\bin\python` içinde **bulur** ve çalıştırır.
    
    Bu, kabaca şunu yazmaya denktir:
    
    <div class="termy">
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/openapi-webhooks.md

    Bu, kullanıcılarınızın **webhook** request'lerinizi alacak şekilde **API'lerini implement etmesini** çok daha kolaylaştırabilir; hatta kendi API kodlarının bir kısmını otomatik üretebilirler.
    
    /// info | Bilgi
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/middleware.md

    Bir middleware oluşturmak için bir fonksiyonun üzerine `@app.middleware("http")` decorator'ünü kullanırsınız.
    
    Middleware fonksiyonu şunları alır:
    
    * `request`.
    * Parametre olarak `request` alacak bir `call_next` fonksiyonu.
        * Bu fonksiyon `request`'i ilgili *path operation*'a iletir.
        * Ardından ilgili *path operation* tarafından üretilen `response`'u döndürür.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  8. src/main/resources/fess_label_id.properties

    labels.employeeNumber=Nomor Pegawai
    labels.user_telephoneNumber=Nomor Telepon
    labels.telephoneNumber=Nomor Telepon
    labels.user_homePhone=Telepon Rumah
    labels.homePhone=Telepon Rumah
    labels.user_homePostalAddress=Alamat Pos Rumah
    labels.homePostalAddress=Alamat Pos Rumah
    labels.user_labeledURI=labeledURI
    labels.labeledURI=labeledURI
    labels.user_roomNumber=Nomor Ruangan
    labels.roomNumber=Nomor Ruangan
    labels.user_description=Deskripsi
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 50.2K bytes
    - Click Count (0)
  9. docs/tr/docs/advanced/openapi-callbacks.md

    ## Normal **FastAPI** uygulaması { #the-normal-fastapi-app }
    
    Önce callback eklemeden önce normal API uygulamasının nasıl görüneceğine bakalım.
    
    Bir `Invoice` body alacak bir *path operation*'ı ve callback için URL'yi taşıyacak `callback_url` adlı bir query parametresi olacak.
    
    Bu kısım oldukça standart; kodun çoğu muhtemelen size zaten tanıdık gelecektir:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/security/get-current-user.md

    Daha önce *path operation* içinde doğrudan yaptığımız gibi, yeni dependency'miz `get_current_user`, alt dependency olan `oauth2_scheme` üzerinden `str` olarak bir `token` alacak:
    
    {* ../../docs_src/security/tutorial002_an_py310.py hl[25] *}
    
    ## Kullanıcıyı alın { #get-the-user }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 4.4K bytes
    - Click Count (0)
Back to Top