Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for video (0.16 sec)

  1. android/guava/src/com/google/common/net/MediaType.java

      /* video types */
      public static final MediaType MP4_VIDEO = createConstant(VIDEO_TYPE, "mp4");
      public static final MediaType MPEG_VIDEO = createConstant(VIDEO_TYPE, "mpeg");
      public static final MediaType OGG_VIDEO = createConstant(VIDEO_TYPE, "ogg");
      public static final MediaType QUICKTIME = createConstant(VIDEO_TYPE, "quicktime");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/MediaTypeTest.java

    import static com.google.common.net.MediaType.ANY_IMAGE_TYPE;
    import static com.google.common.net.MediaType.ANY_TEXT_TYPE;
    import static com.google.common.net.MediaType.ANY_TYPE;
    import static com.google.common.net.MediaType.ANY_VIDEO_TYPE;
    import static com.google.common.net.MediaType.HTML_UTF_8;
    import static com.google.common.net.MediaType.JPEG;
    import static com.google.common.net.MediaType.PLAIN_TEXT_UTF_8;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 21.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

    import static com.google.common.net.MediaType.ANY_IMAGE_TYPE;
    import static com.google.common.net.MediaType.ANY_TEXT_TYPE;
    import static com.google.common.net.MediaType.ANY_TYPE;
    import static com.google.common.net.MediaType.ANY_VIDEO_TYPE;
    import static com.google.common.net.MediaType.HTML_UTF_8;
    import static com.google.common.net.MediaType.JPEG;
    import static com.google.common.net.MediaType.PLAIN_TEXT_UTF_8;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 21.4K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/PostStreamingWithPipe.java

        };
    
        thread.start();
      }
    
      /**
       * This request body makes it possible for another thread to stream data to the uploading request.
       * This is potentially useful for posting live event streams like video capture. Callers should
       * write to {@code sink()} and close it to complete the post.
       */
      static final class PipeBody extends RequestBody {
        private final Pipe pipe = new Pipe(8192);
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Fri Jul 06 03:18:15 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * application/x-tar=tar<br>
         * application/x-rar-compressed=rar<br>
         * video/3gp=3gp<br>
         * video/3g2=3g2<br>
         * video/x-msvideo=avi<br>
         * video/x-flv=flv<br>
         * video/mpeg=mpeg<br>
         * video/mp4=mp4<br>
         * video/ogv=ogv<br>
         * video/quicktime=qt<br>
         * video/x-m4v=m4v<br>
         * audio/x-aif=aif<br>
         * audio/midi=midi<br>
         * audio/mpga=mpga<br>
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: 3gp Video */
        public static final String LABELS_facet_filetype_3gp = "{labels.facet_filetype_3gp}";
    
        /** The key of the message: 3g2 Video */
        public static final String LABELS_facet_filetype_3g2 = "{labels.facet_filetype_3g2}";
    
        /** The key of the message: AVI Video */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top