Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 831 - 840 of 1,049 for key6 (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java

        return Sets.newHashSetWithExpectedSize(expectedSize);
      }
    
      static <E extends @Nullable Object> Set<E> newConcurrentHashSet() {
        // GWT's ConcurrentHashMap is a wrapper around HashMap, but it rejects null keys, which matches
        // the behaviour of the non-GWT implementation of newConcurrentHashSet().
        // On the other hand HashSet might be better for code size if apps aren't
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jan 23 17:16:53 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/MapComputeIfAbsentTester.java

                          assertNull(k);
                          return v3();
                        }));
        expectUnchanged();
        expectNullKeyMissingWhenNullKeysUnsupported(
            "Should not contain null key after unsupported computeIfAbsent(null, function)");
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Nov 14 23:40:07 GMT 2024
    - 6.7K bytes
    - Click Count (0)
  3. 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 }
    
    你可以使用與平常相同的依賴函式。
    
    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)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRoleTypeCB.java

            return doGetConditionQuery();
        }
    
        // ===================================================================================
        //                                                                         Primary Key
        //                                                                         ===========
        public RoleTypeCB acceptPK(String id) {
            assertObjectNotNull("id", id);
            BsRoleTypeCB cb = this;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsClickLogCB.java

            return doGetConditionQuery();
        }
    
        // ===================================================================================
        //                                                                         Primary Key
        //                                                                         ===========
        public ClickLogCB acceptPK(String id) {
            assertObjectNotNull("id", id);
            BsClickLogCB cb = this;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/net/HttpHeadersTest.java

                .put("SEC_WEBSOCKET_ACCEPT", "Sec-WebSocket-Accept")
                .put("SEC_WEBSOCKET_EXTENSIONS", "Sec-WebSocket-Extensions")
                .put("SEC_WEBSOCKET_KEY", "Sec-WebSocket-Key")
                .put("SEC_WEBSOCKET_PROTOCOL", "Sec-WebSocket-Protocol")
                .put("SEC_WEBSOCKET_VERSION", "Sec-WebSocket-Version")
                .put("X_WEBKIT_CSP", "X-WebKit-CSP")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 20:10:09 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ///
    
    /// info | Info
    
    Dans cet exemple, nous utilisons des en-têtes personnalisés fictifs `X-Key` et `X-Token`.
    
    Mais dans des cas réels, lors de l'implémentation de la sécurité, vous tirerez davantage d'avantages en utilisant les [utilitaires de sécurité (chapitre suivant)](../security/index.md) intégrés.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/security/oauth2-jwt.md

    ///
    
    ## JWT token'larını yönetme { #handle-jwt-tokens }
    
    Kurulu modülleri import edelim.
    
    JWT token'larını imzalamak için kullanılacak rastgele bir secret key oluşturalım.
    
    Güvenli, rastgele bir secret key üretmek için şu komutu kullanın:
    
    <div class="termy">
    
    ```console
    $ openssl rand -hex 32
    
    09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7
    ```
    
    </div>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java

      public void testPutAllNullValueSingle_unsupported() {
        multimap().putAll(k1(), newArrayList((V) null));
        expectUnchanged();
      }
    
      // In principle, it would be nice to apply these two tests to keys with existing values, too.
    
      @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES)
      public void testPutAllNullValueNullLast_unsupported() {
        int size = getNumElements();
    
        assertThrows(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  10. docs/smb3-features/03-multi-channel-design.md

                                                NetworkInterfaceInfo localIf,
                                                NetworkInterfaceInfo remoteIf) {
        String key = localIf.getAddress() + ":" + remoteIf.getAddress();
        
        return transports.computeIfAbsent(key, k -> {
            try {
                SmbTransport transport = new SmbTransport(
                    context,
                    remoteIf.getAddress(),
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 39.6K bytes
    - Click Count (0)
Back to Top