Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for archives (0.05 sec)

  1. src/test/java/jcifs/util/SecureKeyManagerTest.java

            String sessionId = "remove-with-archives";
            keyManager.storeSessionKey(sessionId, testKey, "AES");
    
            // Create archived versions
            for (int i = 0; i < 3; i++) {
                keyManager.rotateSessionKey(sessionId);
            }
    
            // Verify archives exist
            assertTrue(keyManager.hasSessionKey(sessionId + ".v0"), "Version 0 should exist");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/SecureKeyManager.java

                });
    
                // Keep only the specified number of versions
                for (int i = keepVersions; i < archives.size(); i++) {
                    removeSessionKey(archives.get(i));
                    removed++;
                }
            }
    
            if (removed > 0) {
                log.info("Cleaned up {} archived key versions", removed);
            }
        }
    
        private int extractVersion(String archivedKey) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  3. src/test/resources/jcifs/smb1/util/mime.map

    application/hep                hep              # Hummingbird Host Explorer Profiles
    application/lotus-123          wks              # Lotus 123
    application/mac-binhex40       hqx              # Macintosh binhexed archives
    application/mspowerpoint       ppt              # Microsoft Powerpoint
    application/msword             doc              # Microsoft Word
    application/octet-stream       bin exe ani      # Binary File
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. LICENSES/vendor/cel.dev/expr/LICENSE

          file or class name and description of purpose be included on the
          same "printed page" as the copyright notice for easier
          identification within third-party archives.
    
       Copyright [yyyy] [name of copyright owner]
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Nov 06 20:53:17 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. LICENSE

          file or class name and description of purpose be included on the
          same "printed page" as the copyright notice for easier
          identification within third-party archives.
    
       Copyright [yyyy] [name of copyright owner]
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Apr 18 13:54:00 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/MediaType.java

       * <a
       * href="https://learn.microsoft.com/en-us/archive/blogs/vsofficedeveloper/office-2007-file-format-mime-types-for-http-content-streaming-2">Microsoft
       * Powerpoint</a> presentations.
       */
      public static final MediaType MICROSOFT_POWERPOINT =
          createConstant(APPLICATION_TYPE, "vnd.ms-powerpoint");
    
      /**
       * <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/MediaType.java

       * <a
       * href="https://learn.microsoft.com/en-us/archive/blogs/vsofficedeveloper/office-2007-file-format-mime-types-for-http-content-streaming-2">Microsoft
       * Powerpoint</a> presentations.
       */
      public static final MediaType MICROSOFT_POWERPOINT =
          createConstant(APPLICATION_TYPE, "vnd.ms-powerpoint");
    
      /**
       * <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Monitor.java

      // up strongly favoring the current interface.
      //
      // I probably can't remember all the reasons (it's possible you
      // could find them in the code review archives), but here are a few:
      //
      // 1. What about leaving/unlocking? Are you going to do
      //    guard.enter() paired with monitor.leave()? That might get
      //    confusing. It's nice for the finally block to look as close as
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  9. docs/es/docs/how-to/custom-docs-ui-assets.md

    La documentación de la API utiliza **Swagger UI** y **ReDoc**, y cada uno de estos necesita algunos archivos JavaScript y CSS.
    
    Por defecto, esos archivos se sirven desde un <abbr title="Content Delivery Network: Un servicio, normalmente compuesto de varios servidores, que proporciona archivos estáticos, como JavaScript y CSS. Se utiliza comúnmente para servir esos archivos desde el servidor más cercano al cliente, mejorando el rendimiento.">CDN</abbr>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Apr 28 18:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/request-files.md

    * `read(size)`: Lee `size` (`int`) bytes/caracteres del archivo.
    * `seek(offset)`: Va a la posición de bytes `offset` (`int`) en el archivo.
        * Por ejemplo, `await myfile.seek(0)` iría al inicio del archivo.
        * Esto es especialmente útil si ejecutas `await myfile.read()` una vez y luego necesitas leer el contenido nuevamente.
    * `close()`: Cierra el archivo.
    
    Como todos estos métodos son métodos `async`, necesitas "await" para ellos.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top