Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 351 - 360 of 710 for token5 (0.28 seconds)

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

      @Override
      public SortedMap<K, V> subMap(@ParametricNullness K fromKey, @ParametricNullness K toKey) {
        return subMap(fromKey, true, toKey, false);
      }
    
      @Override
      public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
        return headMap(toKey, false);
      }
    
      @Override
      public SortedMap<K, V> tailMap(@ParametricNullness K fromKey) {
        return tailMap(fromKey, true);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 4.3K bytes
    - Click Count (0)
  2. cmd/admin-heal-ops.go

    		}
    	}
    }
    
    // getHealSequenceByToken - Retrieve a heal sequence by token. The second
    // argument returns if a heal sequence actually exists.
    func (ahs *allHealState) getHealSequenceByToken(token string) (h *healSequence, exists bool) {
    	ahs.RLock()
    	defer ahs.RUnlock()
    	for _, healSeq := range ahs.healSeqMap {
    		if healSeq.clientToken == token {
    			return healSeq, true
    		}
    	}
    	return nil, false
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  3. docs/es/docs/_llm-test.md

    ### El abbr da una frase completa { #the-abbr-gives-a-full-phrase }
    
    * <abbr title="Getting Things Done - Hacer las cosas">GTD</abbr>
    * <abbr title="less than - menor que"><code>lt</code></abbr>
    * <abbr title="XML Web Token - Token web XML">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface - Interfaz de pasarela de servidor paralela">PSGI</abbr>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  4. docs/de/docs/project-generation.md

      - 🦇 „Dark-Mode“-Unterstützung.
    - 🐋 [Docker Compose](https://www.docker.com) für Entwicklung und Produktion.
    - 🔒 Sicheres Passwort-Hashing standardmäßig.
    - 🔑 JWT (JSON Web Token)-Authentifizierung.
    - 📫 E-Mail-basierte Passwortwiederherstellung.
    - ✅ Tests mit [Pytest](https://pytest.org).
    - 📞 [Traefik](https://traefik.io) als Reverse-Proxy / Load Balancer.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/testing-dependencies.md

    ### Kullanım Senaryoları: Harici Servis { #use-cases-external-service }
    
    Örneğin, çağırmanız gereken harici bir authentication provider'ınız olabilir.
    
    Ona bir token gönderirsiniz ve o da authenticated bir user döndürür.
    
    Bu provider request başına ücret alıyor olabilir ve onu çağırmak, testlerde sabit bir mock user kullanmaya kıyasla daha fazla zaman alabilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  6. docs/de/docs/_llm-test.md

    * <abbr title="Getting Things Done – Dinge erledigt bekommen">GTD</abbr>
    * <abbr title="less than – kleiner als"><code>lt</code></abbr>
    * <abbr title="XML Web Token">XWT</abbr>
    * <abbr title="Paralleles Server-Gateway-Interface">PSGI</abbr>
    
    ### Das abbr gibt eine vollständige Phrase und eine Erklärung { #the-abbr-gives-a-full-phrase-and-an-explanation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  7. docs/uk/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ///
    
    /// info | Інформація
    
    У цьому прикладі ми використовуємо вигадані власні заголовки `X-Key` і `X-Token`.
    
    Але в реальних випадках, під час впровадження безпеки, ви отримаєте більше користі, використовуючи вбудовані [Інструменти безпеки (наступний розділ)](../security/index.md).
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/project-generation.md

      - 🤖 自動產生的前端用戶端。
      - 🧪 [Playwright](https://playwright.dev) 用於端到端測試。
      - 🦇 支援深色模式。
    - 🐋 [Docker Compose](https://www.docker.com) 用於開發與正式環境。
    - 🔒 預設即採用安全的密碼雜湊。
    - 🔑 JWT(JSON Web Token)驗證。
    - 📫 以 Email 為基礎的密碼重設。
    - ✅ 使用 [Pytest](https://pytest.org) 的測試。
    - 📞 [Traefik](https://traefik.io) 作為反向代理/負載平衡器。
    - 🚢 使用 Docker Compose 的部署指引,包含如何設定前端 Traefik 代理以自動處理 HTTPS 憑證。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return headMap(toKey, false);
      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are less
       * than (or equal to, if {@code inclusive}) {@code toKey}.
       *
       * <p>The {@link SortedMap#headMap} documentation states that a submap of a submap throws an
       * {@link IllegalArgumentException} if passed a {@code toKey} greater than an earlier {@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 54.7K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    /// tip
    
    有些編輯器會檢查未使用的函式參數,並將其標示為錯誤。
    
    把這些依賴放在路徑操作裝飾器中,可以確保它們被執行,同時避免編輯器/工具報錯。
    
    這也有助於避免讓新加入的開發者看到未使用的參數時,以為它是不必要的而感到困惑。
    
    ///
    
    /// info
    
    在這個範例中我們使用了自訂的(虛構的)標頭 `X-Key` 與 `X-Token`。
    
    但在實際情況下,當你實作安全機制時,使用整合的 [Security utilities(下一章)](../security/index.md) 會獲得更多好處。
    
    ///
    
    ## 依賴的錯誤與回傳值 { #dependencies-errors-and-return-values }
    
    你可以使用與平常相同的依賴函式。
    
    ### 依賴的需求 { #dependency-requirements }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top