Skip to content
#

client

Here are 6,001 public repositories matching this topic...

curl

A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET and TFTP. libcurl offers a myriad of powerful features

  • Updated Aug 4, 2022
  • C
vimpostor
vimpostor commented Jun 1, 2022

Context

Right now Mumble iterates through every program name of every PID for every positional audio plugin. This is quite wasted CPU time if either the PID count is high or plugin count is high, as the time complexity is in $\mathcal{O}(PIDNum \cdot pluginNum )$.

Example: https://github.com/mumble-voip/mumble/blob/dd5df45313a937359285327f556557159bab758e/plugins/gtav/gtav.cpp#L81

client feature-request good first issue
mmktomato
mmktomato commented Aug 4, 2022

Bug Description

I found I can't intercept a http request with an array query parameter if I use native fetch.

Reproducible By

const mockAgent = new MockAgent()
setGlobalDispatcher(mockAgent)

const mockPool = mockAgent.get('http://localhost:3001')

mockPool.intercept({
  path: '/foo',
  method: 'GET',
  query: {
    arr: ["a","b"],
  },
}).reply(200, 'foo')

// T
bug good first issue

Improve this page

Add a description, image, and links to the client topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the client topic, visit your repo's landing page and select "manage topics."

Learn more