Home
last modified time | relevance | path

Searched defs:Engine (Results 151 – 175 of 3082) sorted by relevance

12345678910>>...124

/dports/x11/aclip/arcan-0.6.1/
H A DCHANGELOG.md3 ## Engine section
110 ## Engine section
257 ## Engine section
346 ### Engine subsection
400 ### Engine subsection
470 ### Engine subsection
560 ### Engine subsection
642 ### Engine subsection
/dports/www/gitea/gitea-1.16.5/models/
H A Dproject.go96 func getProjects(e db.Engine, opts ProjectSearchOptions) ([]*Project, int64, error) {
172 func getProjectByID(e db.Engine, id int64) (*Project, error) {
190 func updateProject(e db.Engine, p *Project) error {
198 func updateRepositoryProjectCount(e db.Engine, repoID int64) error {
260 func changeProjectStatus(e db.Engine, p *Project, isClosed bool) error {
289 func deleteProjectByID(e db.Engine, id int64) error {
H A Dnotification.go128 func getNotifications(e db.Engine, options *FindNotificationOptions) (nl NotificationList, err erro…
292 func getNotificationsByIssueID(e db.Engine, issueID int64) (notifications []*Notification, err erro…
309 func createIssueNotification(e db.Engine, userID int64, issue *Issue, commentID, updatedByID int64)…
329 func updateIssueNotification(e db.Engine, userID, issueID, commentID, updatedByID int64) error {
351 func getIssueNotification(e db.Engine, userID, issueID int64) (*Notification, error) {
365 func notificationsForUser(e db.Engine, user *user_model.User, statuses []NotificationStatus, page, …
388 func countUnread(e db.Engine, userID int64) int64 {
744 func getNotificationCount(e db.Engine, user *user_model.User, status NotificationStatus) (count int…
767 func setIssueNotificationStatusReadIfUnread(e db.Engine, userID, issueID int64) error {
784 func setRepoNotificationStatusReadIfUnread(e db.Engine, userID, repoID int64) error {
[all …]
H A Dorg_team.go615 func getTeam(e db.Engine, orgID int64, name string) (*Team, error) {
652 func getOwnerTeam(e db.Engine, orgID int64) (*Team, error) {
656 func getTeamByID(e db.Engine, teamID int64) (*Team, error) {
863 func isTeamMember(e db.Engine, orgID, teamID, userID int64) (bool, error) {
877 func getTeamUsersByTeamID(e db.Engine, teamID int64) ([]*TeamUser, error) {
884 func getTeamMembers(e db.Engine, teamID int64) (_ []*user_model.User, err error) {
1062 func isUserInTeams(e db.Engine, userID int64, teamIDs []int64) (bool, error) {
1092 func hasTeamRepo(e db.Engine, orgID, teamID, repoID int64) bool {
1106 func addTeamRepo(e db.Engine, orgID, teamID, repoID int64) error {
1115 func removeTeamRepo(e db.Engine, teamID, repoID int64) error {
[all …]
H A Dissue_tracked_time.go130 func getTrackedTimes(e db.Engine, options *FindTrackedTimesOptions) (trackedTimes TrackedTimeList, …
149 func getTrackedSeconds(e db.Engine, opts FindTrackedTimesOptions) (trackedSeconds int64, err error)…
190 func addTime(e db.Engine, user *user_model.User, issue *Issue, amount int64, created time.Time) (*T…
301 func deleteTimes(e db.Engine, opts FindTrackedTimesOptions) (removedTime int64, err error) {
311 func deleteTime(e db.Engine, t *TrackedTime) error {
/dports/net-mgmt/promscale/promscale-0.6.2/pkg/api/
H A Dquery_range.go19 func QueryRange(conf *Config, queryEngine *promql.Engine, queryable promql.Queryable, metrics *Metr…
24 func queryRange(conf *Config, queryEngine *promql.Engine, queryable promql.Queryable, metrics *Metr…
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/pkg/logql/
H A Dengine.go61 type Engine struct { struct
62 timeout time.Duration
63 evaluator Evaluator
64 limits Limits
78 func (ng *Engine) Query(params Params) Query {
/dports/net-mgmt/prometheus1/prometheus-1.8.2/promql/
H A Dengine.go305 type Engine struct { struct
307 queryable Queryable
309 gate *queryGate
310 options *EngineOptions
344 func (ng *Engine) NewInstantQuery(qs string, ts model.Time) (Query, error) {
371 func (ng *Engine) newQuery(expr Expr, start, end model.Time, interval time.Duration) *query {
393 func (ng *Engine) newTestQuery(f func(context.Context) error) Query {
407 func (ng *Engine) exec(ctx context.Context, q *query) (model.Value, error) {
446 …nc (ng *Engine) execEvalStmt(ctx context.Context, query *query, s *EvalStmt) (model.Value, error) {
570 func (ng *Engine) populateIterators(ctx context.Context, querier local.Querier, s *EvalStmt) error {
[all …]
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/quasilyte/go-ruleguard/ruleguard/
H A Druleguard.go19 type Engine struct { struct
20 impl *engine
33 func (e *Engine) Load(ctx *ParseContext, filename string, r io.Reader) error {
42 func (e *Engine) Run(ctx *RunContext, f *ast.File) error {
/dports/www/gitea/gitea-1.16.5/models/asymkey/
H A Dgpg_key_add.go32 func addGPGKey(e db.Engine, key *GPGKey, content string) (err error) {
54 func addGPGSubKey(e db.Engine, key *GPGKey) (err error) {
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/prometheus/prometheus/promql/
H A Dengine.go213 type Engine struct { struct
214 logger log.Logger
215 metrics *engineMetrics
216 timeout time.Duration
217 gate *gate.Gate
218 maxSamplesPerQuery int
295 func (ng *Engine) NewInstantQuery(q storage.Queryable, qs string, ts time.Time) (Query, error) {
322 …ne) newQuery(q storage.Queryable, expr Expr, start, end time.Time, interval time.Duration) *query {
345 func (ng *Engine) newTestQuery(f func(context.Context) error) Query {
359 func (ng *Engine) exec(ctx context.Context, q *query) (Value, storage.Warnings, error) {
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/prometheus/prometheus/promql/
H A Dengine.go193 type Engine struct { struct
194 logger log.Logger
195 metrics *engineMetrics
196 timeout time.Duration
197 gate *gate.Gate
198 maxSamplesPerQuery int
271 func (ng *Engine) NewInstantQuery(q storage.Queryable, qs string, ts time.Time) (Query, error) {
298 …ne) newQuery(q storage.Queryable, expr Expr, start, end time.Time, interval time.Duration) *query {
321 func (ng *Engine) newTestQuery(f func(context.Context) error) Query {
335 func (ng *Engine) exec(ctx context.Context, q *query) (Value, error, storage.Warnings) {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/pkg/configs/legacy_promql/
H A Dengine.go166 type Engine struct { struct
167 logger log.Logger
168 metrics *engineMetrics
169 timeout time.Duration
170 gate *queryGate
242 func (ng *Engine) NewInstantQuery(q storage.Queryable, qs string, ts time.Time) (Query, error) {
269 …ne) newQuery(q storage.Queryable, expr Expr, start, end time.Time, interval time.Duration) *query {
292 func (ng *Engine) newTestQuery(f func(context.Context) error) Query {
306 func (ng *Engine) exec(ctx context.Context, q *query) (Value, error) {
357 func (ng *Engine) execEvalStmt(ctx context.Context, query *query, s *EvalStmt) (Value, error) {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/cortexproject/cortex/pkg/configs/legacy_promql/
H A Dengine.go166 type Engine struct { struct
167 logger log.Logger
168 metrics *engineMetrics
169 timeout time.Duration
170 gate *queryGate
242 func (ng *Engine) NewInstantQuery(q storage.Queryable, qs string, ts time.Time) (Query, error) {
269 …ne) newQuery(q storage.Queryable, expr Expr, start, end time.Time, interval time.Duration) *query {
292 func (ng *Engine) newTestQuery(f func(context.Context) error) Query {
306 func (ng *Engine) exec(ctx context.Context, q *query) (Value, error) {
357 func (ng *Engine) execEvalStmt(ctx context.Context, query *query, s *EvalStmt) (Value, error) {
[all …]
/dports/www/gitea/gitea-1.16.5/models/auth/
H A Doauth2.go120 func getOAuth2ApplicationByClientID(e db.Engine, clientID string) (app *OAuth2Application, err erro…
134 func getOAuth2ApplicationByID(e db.Engine, id int64) (app *OAuth2Application, err error) {
151 func getOAuth2ApplicationsByUserID(e db.Engine, userID int64) (apps []*OAuth2Application, err error…
169 func createOAuth2Application(e db.Engine, opts CreateOAuth2ApplicationOptions) (*OAuth2Application,…
219 func updateOAuth2Application(e db.Engine, app *OAuth2Application) error {
226 func deleteOAuth2Application(sess db.Engine, id, userid int64) error {
355 func getOAuth2AuthorizationByCode(e db.Engine, code string) (auth *OAuth2AuthorizationCode, err err…
462 func getOAuth2GrantByID(e db.Engine, id int64) (grant *OAuth2Grant, err error) {
477 func getOAuth2GrantsByUserID(e db.Engine, uid int64) ([]*OAuth2Grant, error) {
509 func revokeOAuth2Grant(e db.Engine, grantID, userID int64) error {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/miner/
H A Dworker_test.go119 func newTestWorkerBackend(t *testing.T, chainConfig *params.ChainConfig, engine consensus.Engine, d…
197 func newTestWorker(t *testing.T, chainConfig *params.ChainConfig, engine consensus.Engine, db ethdb…
275 func testEmptyWork(t *testing.T, chainConfig *params.ChainConfig, engine consensus.Engine) {
379 …testRegenerateMiningBlock(t *testing.T, chainConfig *params.ChainConfig, engine consensus.Engine) {
439 func testAdjustInterval(t *testing.T, chainConfig *params.ChainConfig, engine consensus.Engine) {
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.elastic.co/apm/module/apmgin/
H A Dbench_test.go57 func benchmarkEngine(b *testing.B, path string, addMiddleware func(*gin.Engine)) {
88 func testRouter(addMiddleware func(*gin.Engine)) *gin.Engine {
/dports/games/openra/.nuget/packages/NUnit/
H A DCHANGES.md605 #### Engine subsubsection
681 #### Engine subsubsection
732 #### Engine subsubsection
819 #### Engine subsubsection
834 #### Engine subsubsection
867 #### Engine subsubsection
914 #### Engine subsubsection
980 #### Engine subsubsection
1033 #### Engine subsubsection
1088 #### Engine subsubsection
[all …]
/dports/games/openra/.nuget/packages/nunit/3.12.0/
H A DCHANGES.md605 #### Engine subsubsection
681 #### Engine subsubsection
732 #### Engine subsubsection
819 #### Engine subsubsection
834 #### Engine subsubsection
867 #### Engine subsubsection
914 #### Engine subsubsection
980 #### Engine subsubsection
1033 #### Engine subsubsection
1088 #### Engine subsubsection
[all …]
/dports/games/openra/.nuget/packages/NUnit.3.12.0/
H A DCHANGES.md605 #### Engine subsubsection
681 #### Engine subsubsection
732 #### Engine subsubsection
819 #### Engine subsubsection
834 #### Engine subsubsection
867 #### Engine subsubsection
914 #### Engine subsubsection
980 #### Engine subsubsection
1033 #### Engine subsubsection
1088 #### Engine subsubsection
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/
H A DEngine.cs38 public class Engine { class
61 static Engine () in Engine() method in Microsoft.Build.BuildEngine.Engine
66 public Engine () in Engine() method in Microsoft.Build.BuildEngine.Engine
71 public Engine (ToolsetDefinitionLocations locations) in Engine() method in Microsoft.Build.BuildEngine.Engine
77 public Engine (BuildPropertyGroup globalProperties) in Engine() method in Microsoft.Build.BuildEngine.Engine
83 public Engine (BuildPropertyGroup globalProperties, ToolsetDefinitionLocations locations) in Engine() method in Microsoft.Build.BuildEngine.Engine
92 public Engine (string binPath) in Engine() method in Microsoft.Build.BuildEngine.Engine
/dports/audio/musicpd/mpd-0.23.6/src/output/plugins/sles/
H A DEngine.hxx39 class Engine { class
44 explicit Engine(SLEngineItf _engine):engine(_engine) {} in Engine() function in SLES::Engine
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/abseil-cpp/absl/random/internal/
H A Dranden_benchmarks.cc80 struct Engine { struct
81 mutable absl::random_internal::randen_engine<UInt> rng;
83 static constexpr size_t bytes() { return sizeof(UInt); } in bytes()
85 FuncOutput operator()(const FuncInput num_iters) const { in operator ()()
/dports/devel/abseil/abseil-cpp-20211102.0/absl/random/internal/
H A Dranden_benchmarks.cc80 struct Engine { struct
81 mutable absl::random_internal::randen_engine<UInt> rng;
83 static constexpr size_t bytes() { return sizeof(UInt); } in bytes()
85 FuncOutput operator()(const FuncInput num_iters) const { in operator ()()
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/abseil-cpp/absl/random/internal/
H A Dranden_benchmarks.cc80 struct Engine { struct
81 mutable absl::random_internal::randen_engine<UInt> rng;
83 static constexpr size_t bytes() { return sizeof(UInt); } in bytes()
85 FuncOutput operator()(const FuncInput num_iters) const { in operator ()()

12345678910>>...124