Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WAVE (0.23 sec)

  1. pkg/xds/server.go

    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    		// cannot completely starve pushes. However, this scenario is unlikely.
    		select {
    		case req, ok := <-con.reqChan:
    			if ok {
    				if err := ctx.Process(req); err != nil {
    					return err
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/MediaType.java

       */
      public static final MediaType VND_REAL_AUDIO = createConstant(AUDIO_TYPE, "vnd.rn-realaudio");
    
      /**
       * WAVE format, as defined by <a href="https://tools.ietf.org/html/rfc2361">RFC 2361</a>.
       *
       * @since 20.0
       */
      public static final MediaType VND_WAVE_AUDIO = createConstant(AUDIO_TYPE, "vnd.wave");
    
      /* video types */
      public static final MediaType MP4_VIDEO = createConstant(VIDEO_TYPE, "mp4");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

       */
      public static final MediaType VND_REAL_AUDIO = createConstant(AUDIO_TYPE, "vnd.rn-realaudio");
    
      /**
       * WAVE format, as defined by <a href="https://tools.ietf.org/html/rfc2361">RFC 2361</a>.
       *
       * @since 20.0
       */
      public static final MediaType VND_WAVE_AUDIO = createConstant(AUDIO_TYPE, "vnd.wave");
    
      /* video types */
      public static final MediaType MP4_VIDEO = createConstant(VIDEO_TYPE, "mp4");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    		// cannot completely starve pushes. However, this scenario is unlikely.
    		select {
    		case req, ok := <-con.deltaReqChan:
    			if ok {
    				if err := s.processDeltaRequest(req, con); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top