Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for audio (0.28 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            // Test with various MIME types
            String[] supportedTypes = { "application/pdf", "image/jpeg", "image/png" };
            String[] unsupportedTypes = { "text/plain", "application/xml", "audio/mp3" };
    
            for (String mimeType : supportedTypes) {
                Map<String, Object> docMap = new HashMap<>();
                docMap.put("mimetype", mimeType);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/MediaTypeTest.java

        assertEquals("application", newType.type());
        assertEquals("yams", newType.subtype());
      }
    
      public void testCreateAudioType() {
        MediaType newType = MediaType.createAudioType("yams");
        assertEquals("audio", newType.type());
        assertEquals("yams", newType.subtype());
      }
    
      public void testCreateFontType() {
        MediaType newType = MediaType.createFontType("yams");
        assertEquals("font", newType.type());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            // Default constructor
        }
    
        /**
         * The logger.
         */
        protected Logger logger = null;
    
        /**
         * The logger name.
         */
        protected String loggerName = "fess.log.audit";
    
        /**
         * The permission separator.
         */
        protected String permissionSeparator = "|";
    
        /**
         * The flag to use ECS format.
         */
        protected boolean useEcsFormat = false;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.32.md

    - X.509 client certificate authentication to the kube-apiserver now produces credential IDs (derived from the certificate's signature) , for use in audit logging. ([#125634](https://github.com/kubernetes/kubernetes/pull/125634), [@ahmedtd](https://github.com/ahmedtd)) [SIG API Machinery, Auth and Testing]
    
    ### Feature
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.33.md

    - Adds apiserver.latency.k8s.io/authentication annotation to the audit log to record the time spent authenticating slow requests.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Added apiserver.latency.k8s.io/apf-queue-wait annotation to the audit log
      to record the time spent waiting in APF queue. ([#123919](https://github.com/kubernetes/kubernetes/pull/123919), [@hakuna-matatah](https://github.com/hakuna-matatah))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
Back to top