_id stringlengths 2 7 | text stringlengths 6 2.61k | title stringclasses 1
value |
|---|---|---|
c10300 | // TLSTransport creates a http client transport suitable for mutual tls auth | |
c10301 | // TLSClient creates a http.Client for mutual auth | |
c10302 | // New creates a new default runtime for a swagger api runtime.Client | |
c10303 | // NewWithClient allows you to create a new transport with a configured http.Client | |
c10304 | // EnableConnectionReuse drains the remaining body from a response
// so that go will reuse the TCP connections.
//
// This is not enabled by default because there are servers where
// the response never gets closed and that would make the code hang forever.
// So instead it's provided as a http client middleware that ... | |
c10305 | // SetDebug changes the debug flag.
// It ensures that client and middlewares have the set debug level. | |
c10306 | // SetLogger changes the logger stream.
// It ensures that client and middlewares use the same logger. | |
c10307 | // XMLConsumer creates a new XML consumer | |
c10308 | // XMLProducer creates a new XML producer | |
c10309 | // Handler returns a handler for HTTP method. | |
c10310 | // Build builds a http.Handler. | |
c10311 | // NextSeparator returns an index of next separator in path. | |
c10312 | // NewRequestBinder creates a new binder for reading a request. | |
c10313 | // Bind perform the databinding and validation | |
c10314 | // NotImplemented the error response when the response is not implemented | |
c10315 | // WriteToRequest adds data to the request | |
c10316 | // NamedReader creates a NamedReadCloser for use as file upload | |
c10317 | // WriteResponse writes to the response | |
c10318 | // NewRoutableContext creates a new context for a routable API | |
c10319 | // NewContext creates a new context wrapper | |
c10320 | // Serve serves the specified spec with the specified api registrations as a http.Handler | |
c10321 | // ServeWithBuilder serves the specified spec with the specified api registrations as a http.Handler that is decorated
// by the Builder | |
c10322 | // MatchedRouteFrom request context value. | |
c10323 | // SecurityScopesFrom request context value. | |
c10324 | // BindValidRequest binds a params object to a request but only when the request is valid
// if the request is not valid an error will be returned | |
c10325 | // ContentType gets the parsed value of a content type
// Returns the media type, its charset and a shallow copy of the request
// when its context doesn't contain the content type value, otherwise it returns
// the same request
// Returns the error that runtime.ContentType may retunrs. | |
c10326 | // LookupRoute looks a route up and returns true when it is found | |
c10327 | // RouteInfo tries to match a route for this request
// Returns the matched route, a shallow copy of the request if its context
// contains the matched router, otherwise the same request, and a bool to
// indicate if it the request matches one of the routes, if it doesn't
// then it returns false and nil for the other ... | |
c10328 | // ResponseFormat negotiates the response content type
// Returns the response format and a shallow copy of the request if its context
// doesn't contain the response format, otherwise the same request | |
c10329 | // AllowedMethods gets the allowed methods for the path of this request | |
c10330 | // ResetAuth removes the current principal from the request context | |
c10331 | // BindAndValidate binds and validates the request
// Returns the validation map and a shallow copy of the request when its context
// doesn't contain the validation, otherwise it returns the same request or an
// CompositeValidationError error | |
c10332 | // NotFound the default not found responder for when no route has been matched yet | |
c10333 | // APIHandler returns a handler to serve the API, this includes a swagger spec, router and the contract defined in the swagger spec | |
c10334 | // RoutesHandler returns a handler to serve the API, just the routes and the contract defined in the swagger spec | |
c10335 | // TextConsumer creates a new text consumer | |
c10336 | // TextProducer creates a new text producer | |
c10337 | // CSVConsumer creates a new CSV consumer | |
c10338 | // CSVProducer creates a new CSV producer | |
c10339 | // JSON converts the contained object to a JSON string
// representation | |
c10340 | // MustJSON converts the contained object to a JSON string
// representation and panics if there is an error | |
c10341 | // Base64 converts the contained object to a Base64 string
// representation of the JSON string representation | |
c10342 | // MustBase64 converts the contained object to a Base64 string
// representation of the JSON string representation and panics
// if there is an error | |
c10343 | // SignedBase64 converts the contained object to a Base64 string
// representation of the JSON string representation and signs it
// using the provided key. | |
c10344 | // MustSignedBase64 converts the contained object to a Base64 string
// representation of the JSON string representation and signs it
// using the provided key and panics if there is an error | |
c10345 | // getKey returns the key which is held in s by two brackets.
// It also returns the next selector. | |
c10346 | // access accesses the object using the selector and performs the
// appropriate action. | |
c10347 | // Dema - Double Exponential Moving Average | |
c10348 | // Ma - Moving average | |
c10349 | // MaVp - Moving average with variable period | |
c10350 | // MidPoint - MidPoint over period | |
c10351 | // MidPrice - Midpoint Price over period | |
c10352 | // Sma - Simple Moving Average | |
c10353 | // Tema - Triple Exponential Moving Average | |
c10354 | // Wma - Weighted Moving Average | |
c10355 | // AdxR - Average Directional Movement Index Rating | |
c10356 | // AroonOsc - Aroon Oscillator | |
c10357 | // Bop - Balance Of Power | |
c10358 | // Cmo - Chande Momentum Oscillator | |
c10359 | // Cci - Commodity Channel Index | |
c10360 | // MacdExt - MACD with controllable MA type
// unstable period ~= 100 | |
c10361 | // MinusDM - Minus Directional Movement | |
c10362 | // Mom - Momentum | |
c10363 | // Ppo - Percentage Price Oscillator | |
c10364 | // Rsi - Relative strength index | |
c10365 | // Stoch - Stochastic | |
c10366 | // StochF - Stochastic Fast | |
c10367 | // StochRsi - Stochastic Relative Strength Index | |
c10368 | // WillR - Williams' %R | |
c10369 | // Obv - On Balance Volume | |
c10370 | // TRange - True Range | |
c10371 | // LinearReg - Linear Regression | |
c10372 | // StdDev - Standard Deviation | |
c10373 | // Var - Variance | |
c10374 | // Asin - Vector Trigonometric ASIN | |
c10375 | // Atan - Vector Trigonometric ATAN | |
c10376 | // Ceil - Vector CEIL | |
c10377 | // Cos - Vector Trigonometric COS | |
c10378 | // Cosh - Vector Trigonometric COSH | |
c10379 | // Exp - Vector atrithmetic EXP | |
c10380 | // Floor - Vector FLOOR | |
c10381 | // Ln - Vector natural log LN | |
c10382 | // Log10 - Vector LOG10 | |
c10383 | // Sin - Vector Trigonometric SIN | |
c10384 | // Sinh - Vector Trigonometric SINH | |
c10385 | // Sqrt - Vector SQRT | |
c10386 | // Tan - Vector Trigonometric TAN | |
c10387 | // Tanh - Vector Trigonometric TANH | |
c10388 | // Div - Vector arithmetic division | |
c10389 | // Max - Highest value over a period | |
c10390 | // Min - Lowest value over a period | |
c10391 | // MinMax - Lowest and highest values over a specified period | |
c10392 | // MinMaxIndex - Indexes of lowest and highest values over a specified period | |
c10393 | // Mult - Vector arithmetic multiply | |
c10394 | // Sub - Vector arithmetic subtraction | |
c10395 | // Sum - Vector summation | |
c10396 | // contextID retrieves the local context ID for this system. | |
c10397 | // sysContextID retrieves the local context ID for this system, using the
// methods from fs. The context ID is stored in cid for later use.
//
// This method uses this signature to enable easier testing without unsafe
// usage of unsafe.Pointer. | |
c10398 | // Accept blocks until a single connection is accepted by the net.Listener.
//
// If timeout is non-zero, the listener will be closed after the timeout
// expires, even if no connection was accepted. | |
c10399 | // SkipHostIntegration skips this test if this machine is a host and cannot
// perform a given test. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.