Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for METADATA (0.06 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

        metadata =
            CompactHashing.maskCombine(metadata, hashTableBits, CompactHashing.HASH_TABLE_BITS_MASK);
      }
    
      /** Gets the hash table mask using the stored number of hash table bits. */
      private int hashTableMask() {
        return (1 << (metadata & CompactHashing.HASH_TABLE_BITS_MASK)) - 1;
      }
    
      void incrementModCount() {
        metadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache2/Relay.kt

       * Read/write persistence of the upstream source and its metadata. Its layout is as follows:
       *
       *  * 16 bytes: either `OkHttp cache v1\n` if the persisted file is complete. This is another
       *    sequence of bytes if the file is incomplete and should not be used.
       *  * 8 bytes: *n*: upstream data size
       *  * 8 bytes: *m*: metadata size
       *  * *n* bytes: upstream data
       *  * *m* bytes: metadata
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 17:15:47 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

        metadata =
            CompactHashing.maskCombine(metadata, hashTableBits, CompactHashing.HASH_TABLE_BITS_MASK);
      }
    
      /** Gets the hash table mask using the stored number of hash table bits. */
      private int hashTableMask() {
        return (1 << (metadata & CompactHashing.HASH_TABLE_BITS_MASK)) - 1;
      }
    
      void incrementModCount() {
        metadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            return switch (responseType) {
            case METADATA -> getMetadataResponse();
            case LOGOUT -> getLogoutResponse();
            default -> null;
            };
        }
    
        /**
         * Gets the metadata response.
         * @return The metadata response.
         */
        protected ActionResponse getMetadataResponse() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  5. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

                    if (url.contains("maven-metadata.xml")) {
                        return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<metadata>\n" + "  <versioning>\n" + "    <versions>\n"
                                + "      <version>1.0.0</version>\n" + "      <version>2.0.0</version>\n" + "    </versions>\n"
                                + "  </versioning>\n" + "</metadata>";
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashMap.java

        metadata =
            CompactHashing.maskCombine(metadata, hashTableBits, CompactHashing.HASH_TABLE_BITS_MASK);
      }
    
      /** Gets the hash table mask using the stored number of hash table bits. */
      private int hashTableMask() {
        return (1 << (metadata & CompactHashing.HASH_TABLE_BITS_MASK)) - 1;
      }
    
      void incrementModCount() {
        metadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

      }
    
      public void testHiddenFiles() {
        assertEquals(".b", simplifyPath(".b"));
        assertEquals(".b", simplifyPath("./.b"));
        assertEquals(".metadata/b", simplifyPath(".metadata/b"));
        assertEquals(".metadata/b", simplifyPath("./.metadata/b"));
      }
    
      // https://github.com/google/guava/issues/716
      public void testMultipleDotFilenames() {
        assertEquals("..a", simplifyPath("..a"));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            ActionResponse result = authenticator.getResponse(SsoResponseType.METADATA);
    
            // Verify initial state
            assertNull(result);
    
            // Setup with JSON response (easier to create without LastaFlute context)
            JsonResponse<?> expectedResponse = new JsonResponse<>(new HashMap<>());
            authenticator.setResponseForType(SsoResponseType.METADATA, expectedResponse);
    
            // Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        // Test getResponse() method
        public void test_getResponse_whenNotAvailable() {
            currentSsoType = Constants.NONE;
            assertNull(ssoManager.getResponse(SsoResponseType.METADATA));
            assertNull(ssoManager.getResponse(SsoResponseType.LOGOUT));
        }
    
        public void test_getResponse_whenAvailableButNoAuthenticator() {
            currentSsoType = "invalid";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            return roleTypeList;
        }
    
        /**
         * Extracts role type information from FTP (File Transfer Protocol) response data.
         * Processes FTP metadata to extract file owner and group information.
         *
         * @param responseData the response data containing FTP metadata
         * @return a list of role type strings extracted from the FTP file permissions
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top