Home
last modified time | relevance | path

Searched refs:Methods (Results 1 – 25 of 8406) sorted by relevance

12345678910>>...337

/dports/www/miniflux/v2-2.0.35/ui/
H A Dui.go42 uiRouter.HandleFunc("/favicon.ico", handler.showFavicon).Name("favicon").Methods(http.MethodGet)
54 uiRouter.HandleFunc("/unread", handler.showUnreadPage).Name("unread").Methods(http.MethodGet)
58 uiRouter.HandleFunc("/history", handler.showHistoryPage).Name("history").Methods(http.MethodGet)
71 uiRouter.HandleFunc("/feeds", handler.showFeedsPage).Name("feeds").Methods(http.MethodGet)
112 uiRouter.HandleFunc("/users", handler.showUsersPage).Name("users").Methods(http.MethodGet)
114 uiRouter.HandleFunc("/user/save", handler.saveUser).Name("saveUser").Methods(http.MethodPost)
126 uiRouter.HandleFunc("/about", handler.showAboutPage).Name("about").Methods(http.MethodGet)
133 uiRouter.HandleFunc("/keys", handler.showAPIKeysPage).Name("apiKeys").Methods(http.MethodGet)
139 uiRouter.HandleFunc("/export", handler.exportFeeds).Name("export").Methods(http.MethodGet)
142 uiRouter.HandleFunc("/fetch", handler.fetchOPML).Name("fetchOPML").Methods(http.MethodPost)
[all …]
/dports/textproc/p5-XML-SAX-Base/XML-SAX-Base-1.09/lib/XML/SAX/
H A DBase.pm40 if (defined $self->{Methods}->{'end_entity'}) {
41 $self->{Methods}->{'end_entity'}->(@_);
340 $self->{Methods}->{'fatal_error'}->(@_);
501 $self->{Methods}->{'warning'}->(@_);
938 $self->{Methods}->{'end_dtd'}->(@_);
1167 if (defined $self->{Methods}->{'error'}) {
1168 $self->{Methods}->{'error'}->(@_);
1237 $self->{Methods}->{'xml_decl'}->(@_);
1904 $self->{Methods}->{'comment'}->(@_);
1996 $self->{Methods}->{'start_dtd'}->(@_);
[all …]
/dports/www/writefreely/writefreely-0.13.1/
H A Droutes.go89 auth.HandleFunc("/signup", handler.All(apiSignup)).Methods("POST")
91 auth.HandleFunc("/login", handler.All(login)).Methods("POST")
93 auth.HandleFunc("/me", handler.All(handleAPILogout)).Methods("DELETE")
99 me.HandleFunc("/c/", handler.User(viewCollections)).Methods("GET")
104 me.HandleFunc("/posts/", handler.User(viewArticles)).Methods("GET")
110 me.HandleFunc("/import", handler.User(viewImport)).Methods("GET")
115 write.HandleFunc("/api/me", handler.All(viewMeAPI)).Methods("GET")
117 apiMe.HandleFunc("/", handler.All(viewMeAPI)).Methods("GET")
121 apiMe.HandleFunc("/self", handler.All(updateSettings)).Methods("POST")
156 write.HandleFunc("/api/posts", handler.All(newPost)).Methods("POST")
[all …]
/dports/www/miniflux/v2-2.0.35/api/
H A Dapi.go30 sr.Methods(http.MethodOptions)
31 sr.HandleFunc("/users", handler.createUser).Methods(http.MethodPost)
32 sr.HandleFunc("/users", handler.users).Methods(http.MethodGet)
38 sr.HandleFunc("/me", handler.currentUser).Methods(http.MethodGet)
40 sr.HandleFunc("/categories", handler.getCategories).Methods(http.MethodGet)
48 sr.HandleFunc("/feeds", handler.createFeed).Methods(http.MethodPost)
49 sr.HandleFunc("/feeds", handler.getFeeds).Methods(http.MethodGet)
52 sr.HandleFunc("/feeds/{feedID}", handler.getFeed).Methods(http.MethodGet)
57 sr.HandleFunc("/export", handler.exportFeeds).Methods(http.MethodGet)
58 sr.HandleFunc("/import", handler.importFeeds).Methods(http.MethodPost)
[all …]
/dports/net-mgmt/semaphore/semaphore-2.6.8/api/
H A Drouter.go69 pingRouter.Methods("GET", "HEAD").HandlerFunc(pongHandler)
74 publicAPIRouter.HandleFunc("/auth/login", login).Methods("POST")
75 publicAPIRouter.HandleFunc("/auth/logout", logout).Methods("POST")
91 authenticatedAPI.Path("/users").HandlerFunc(addUser).Methods("POST")
97 tokenAPI.Path("/tokens").HandlerFunc(createAPIToken).Methods("POST")
103 userAPI.Methods("GET", "HEAD").HandlerFunc(getUser)
104 userAPI.Methods("PUT").HandlerFunc(updateUser)
105 userAPI.Methods("DELETE").HandlerFunc(deleteUser)
113 projectGet.Methods("GET", "HEAD").HandlerFunc(projects.GetProject)
144 projectAdminAPI.Methods("PUT").HandlerFunc(projects.UpdateProject)
[all …]
/dports/sysutils/jest/jest-f76bc46/
H A Dmain.go51 r.HandleFunc("/init", GetInitEndpoint).Methods("GET")
52 r.HandleFunc("/init", CreateInitEndpoint).Methods("POST")
53 r.HandleFunc("/init", DeleteInitEndpoint).Methods("DELETE")
56 r.HandleFunc("/templates", DeleteInitEndpoint).Methods("POST")
62 r.HandleFunc("/jails", ListJailsEndpoint).Methods("GET")
63 r.HandleFunc("/jails", CreateJailsEndpoint).Methods("POST")
65 r.HandleFunc("/jails/{name}", GetJailEndpoint).Methods("GET")
69 r.HandleFunc("/snapshots", DeleteInitEndpoint).Methods("GET")
76 r.HandleFunc("/config", DeleteInitEndpoint).Methods("GET")
77 r.HandleFunc("/config", DeleteInitEndpoint).Methods("POST")
[all …]
/dports/net/storj/storj-1.45.3/multinode/console/server/
H A Dserver.go90 nodesRouter.HandleFunc("", nodesController.Add).Methods(http.MethodPost)
91 nodesRouter.HandleFunc("/infos", nodesController.ListInfos).Methods(http.MethodGet)
94 nodesRouter.HandleFunc("/{id}", nodesController.Get).Methods(http.MethodGet)
95 nodesRouter.HandleFunc("/{id}", nodesController.UpdateName).Methods(http.MethodPatch)
96 nodesRouter.HandleFunc("/{id}", nodesController.Delete).Methods(http.MethodDelete)
100 operatorsRouter.HandleFunc("", operatorsController.ListPaginated).Methods(http.MethodGet)
104 bandwidthRouter.HandleFunc("/", bandwidthController.Monthly).Methods(http.MethodGet)
111 payoutsRouter.HandleFunc("/summaries", payoutsController.Summary).Methods(http.MethodGet)
117 payoutsRouter.HandleFunc("/total-earned", payoutsController.Earned).Methods(http.MethodGet)
126 storageRouter.HandleFunc("/usage", storageController.TotalUsage).Methods(http.MethodGet)
[all …]
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/npm-asset/vue/types/
H A Dvue.d.ts64 …t type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Data & Methods
65 …dVue<Instance extends Vue, Data, Methods, Computed, Props> = VueConstructor<CombinedVueInstance<In…
81Methods = object, Computed = object, PropNames extends string = never>(options?: ThisTypedComponen…
83Methods = object, Computed = object, Props = object>(options?: ThisTypedComponentOptionsWithRecord…
86Methods, Computed, PropNames extends string = never>(options?: ThisTypedComponentOptionsWithArrayP…
87 …ata, Methods, Computed, Props>(options?: ThisTypedComponentOptionsWithRecordProps<V, Data, Methods
107 …ponent<Data, Methods, Computed, Props>(id: string, definition: AsyncComponent<Data, Methods, Compu…
108Methods, Computed, PropNames extends string = never>(id: string, definition?: ThisTypedComponentOp…
109Methods, Computed, Props>(id: string, definition?: ThisTypedComponentOptionsWithRecordProps<V, Dat…
H A Doptions.d.ts13 | ComponentOptions<never, Data, Methods, Computed, Props>
20 = AsyncComponentPromise<Data, Methods, Computed, Props>
21 | AsyncComponentFactory<Data, Methods, Computed, Props>
24 resolve: (component: Component<Data, Methods, Computed, Props>) => void,
29 component: AsyncComponentPromise<Data, Methods, Computed, Props>;
53 ThisType<CombinedVueInstance<V, Data, Methods, Computed, Readonly<Record<PropNames, any>>>>;
58 export type ThisTypedComponentOptionsWithRecordProps<V extends Vue, Data, Methods, Computed, Props>…
60 …ComponentOptions<V, DataDef<Data, Props, V>, Methods, Computed, RecordPropsDefinition<Props>, Prop…
61 ThisType<CombinedVueInstance<V, Data, Methods, Computed, Readonly<Props>>>;
70 Methods=DefaultMethods<V>,
[all …]
/dports/net/storj/storj-1.45.3/satellite/admin/
H A Dserver.go90 api.HandleFunc("/users", server.addUser).Methods("POST")
91 api.HandleFunc("/users/{useremail}", server.updateUser).Methods("PUT")
92 api.HandleFunc("/users/{useremail}", server.userInfo).Methods("GET")
93 api.HandleFunc("/users/{useremail}", server.deleteUser).Methods("DELETE")
94 api.HandleFunc("/projects", server.addProject).Methods("POST")
98 api.HandleFunc("/projects/{project}", server.getProject).Methods("GET")
99 api.HandleFunc("/projects/{project}", server.renameProject).Methods("PUT")
100 api.HandleFunc("/projects/{project}", server.deleteProject).Methods("DELETE")
101 api.HandleFunc("/projects/{project}/apikeys", server.listAPIKeys).Methods("GET")
102 api.HandleFunc("/projects/{project}/apikeys", server.addAPIKey).Methods("POST")
[all …]
/dports/devel/okteta/okteta-0.26.6/kasten/controllers/view/structures/datatypes/primitive/
H A Dprimitivetemplateinfo.hpp52 using Methods = BoolDataInformationMethods<valueType>; typedef
58 using Methods = BoolDataInformationMethods<valueType>; typedef
64 using Methods = BoolDataInformationMethods<valueType>; typedef
70 using Methods = BoolDataInformationMethods<valueType>; typedef
77 using Methods = UIntDataInformationMethods<valueType>; typedef
83 using Methods = UIntDataInformationMethods<valueType>; typedef
89 using Methods = UIntDataInformationMethods<valueType>; typedef
95 using Methods = UIntDataInformationMethods<valueType>; typedef
127 using Methods = CharDataInformationMethods; typedef
133 using Methods = FloatDataInformationMethods; typedef
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Dynamic.Runtime/tests/Dynamic.OverloadResolution/
H A DConformance.dynamic.overloadResolution.Methods.literals.cs7 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.bollit…
43 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.bollit…
79 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
115 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
151 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
187 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
223 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
259 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
295 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
331 namespace ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.literals.chrlit…
[all …]
/dports/net/traefik/traefik-2.6.1/pkg/api/
H A Dhandler.go85 router.Methods(http.MethodGet).Path("/api/rawdata").HandlerFunc(h.getRuntimeConfiguration)
88 router.Methods(http.MethodGet).Path("/api/overview").HandlerFunc(h.getOverview)
90 router.Methods(http.MethodGet).Path("/api/entrypoints").HandlerFunc(h.getEntryPoints)
93 router.Methods(http.MethodGet).Path("/api/http/routers").HandlerFunc(h.getRouters)
94 router.Methods(http.MethodGet).Path("/api/http/routers/{routerID}").HandlerFunc(h.getRouter)
95 router.Methods(http.MethodGet).Path("/api/http/services").HandlerFunc(h.getServices)
97 router.Methods(http.MethodGet).Path("/api/http/middlewares").HandlerFunc(h.getMiddlewares)
100 router.Methods(http.MethodGet).Path("/api/tcp/routers").HandlerFunc(h.getTCPRouters)
102 router.Methods(http.MethodGet).Path("/api/tcp/services").HandlerFunc(h.getTCPServices)
107 router.Methods(http.MethodGet).Path("/api/udp/routers").HandlerFunc(h.getUDPRouters)
[all …]
/dports/cad/opencascade/opencascade-7.6.0/tests/bugs/modalg_6/
H A Dbug2792920 puts "Error: Methods D0 and D1 return different result."
22 puts "OK: Methods D0 and D1 return equal result."
37 puts "Error: Methods D0 and D2 return different result."
39 puts "OK: Methods D0 and D2 return equal result."
43 puts "Error: Methods D1 and D2 return different result."
45 puts "OK: Methods D1 and D2 return equal result."
51 puts "OK: Methods D1 and D2 return equal result."
57 puts "OK: Methods D1 and D2 return equal result."
63 puts "OK: Methods D1 and D2 return equal result."
69 puts "OK: Methods D1 and D2 return equal result."
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/clientapi/routing/
H A Drouting.go92 ).Methods(http.MethodGet, http.MethodOptions)
127 ).Methods(http.MethodPost, http.MethodOptions)
141 ).Methods(http.MethodPost, http.MethodOptions)
163 ).Methods(http.MethodGet, http.MethodOptions)
177 ).Methods(http.MethodPost, http.MethodOptions)
191 ).Methods(http.MethodPost, http.MethodOptions)
261 ).Methods(http.MethodPut, http.MethodOptions)
270 ).Methods(http.MethodGet, http.MethodOptions)
688 ).Methods(http.MethodGet)
698 ).Methods(http.MethodGet)
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/
H A Dvariant.h62 typename ...Methods>
68 std::forward<Methods>(methods)...);
73 Methods...>::call(
75 std::forward<Methods>(methods)...);
82 typename ...Methods>
88 std::forward<Methods>(methods)...);
94 template <typename ...Types, typename ...Methods>
97 Methods &&...methods) {
101 Methods...>::call(value, std::forward<Methods>(methods)...);
107 Methods &&...methods) {
[all …]
/dports/lang/mono/mono-5.10.1.57/external/linker/linker/Tests/Tests/
H A DPreserveActionComparisonTests.cs9 [TestCase (TypePreserve.All, TypePreserve.Methods, TypePreserve.All)]
12 [TestCase (TypePreserve.Methods, TypePreserve.All, TypePreserve.All)]
13 [TestCase (TypePreserve.Methods, TypePreserve.Methods, TypePreserve.Methods)]
14 [TestCase (TypePreserve.Methods, TypePreserve.Fields, TypePreserve.All)]
15 [TestCase (TypePreserve.Methods, TypePreserve.Nothing, TypePreserve.Methods)]
17 [TestCase (TypePreserve.Fields, TypePreserve.Methods, TypePreserve.All)]
21 [TestCase (TypePreserve.Nothing, TypePreserve.Methods, TypePreserve.Methods)]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/serial/datatool/
H A Dchoiceptrstr.cpp121 code.Methods() << in GenerateClassCode()
125 code.Methods() << ",\n" in GenerateClassCode()
128 code.Methods() << "\n" in GenerateClassCode()
151 code.Methods() << in GenerateClassCode()
154 code.Methods() << "BEGIN_NAMED_ABSTRACT_BASE_CLASS_INFO"; in GenerateClassCode()
156 code.Methods() << "BEGIN_NAMED_ABSTRACT_CLASS_INFO"; in GenerateClassCode()
157 code.Methods() << in GenerateClassCode()
162 code.Methods() << in GenerateClassCode()
166 code.Methods() << " info->CodeVersion(" << DATATOOL_VERSION << ");\n"; in GenerateClassCode()
168 code.Methods() << in GenerateClassCode()
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/serial/datatool/
H A Dchoiceptrstr.cpp121 code.Methods() << in GenerateClassCode()
125 code.Methods() << ",\n" in GenerateClassCode()
128 code.Methods() << "\n" in GenerateClassCode()
151 code.Methods() << in GenerateClassCode()
154 code.Methods() << "BEGIN_NAMED_ABSTRACT_BASE_CLASS_INFO"; in GenerateClassCode()
156 code.Methods() << "BEGIN_NAMED_ABSTRACT_CLASS_INFO"; in GenerateClassCode()
157 code.Methods() << in GenerateClassCode()
162 code.Methods() << in GenerateClassCode()
166 code.Methods() << " info->CodeVersion(" << DATATOOL_VERSION << ");\n"; in GenerateClassCode()
168 code.Methods() << in GenerateClassCode()
[all …]
/dports/math/tmv/tmv-0.75/doc/
H A DDiagMatrix.tex131 \index{DiagMatrix!Methods!nrows}
132 \index{DiagMatrix!Methods!ncols}
135 \index{DiagMatrix!Methods!size}
138 \index{DiagMatrix!Methods!cref}
139 \index{DiagMatrix!Methods!ref}
148 \index{DiagMatrix!Methods!diag}
167 \index{DiagMatrix!Methods!ptr}
168 \index{DiagMatrix!Methods!cptr}
169 \index{DiagMatrix!Methods!step}
192 \index{DiagMatrix!Methods!view}
[all …]
/dports/devel/rabs/rabs-2.19.5/minilang/src/
H A Dml_method.c14 inthash_t Methods[1]; member
19 State->Context->Values[ML_METHODS_INDEX] = Methods; in ml_methods_call()
31 ml_methods_t *Methods = new(ml_methods_t); in ml_methods_context_new() local
32 Methods->Type = MLMethodsT; in ml_methods_context_new()
34 Context->Values[ML_METHODS_INDEX] = Methods; in ml_methods_context_new()
35 return Methods; in ml_methods_context_new()
96 if (Methods->Parent) { in ml_method_search_entry()
108 Cached->MethodNext = inthash_insert(Methods->Methods, (uintptr_t)Method, Cached); in ml_method_search_entry()
420 ml_methods_t *Methods = new(ml_methods_t); in ML_FUNCTIONX() local
421 Methods->Type = MLMethodsT; in ML_FUNCTIONX()
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/api4/
H A Dldap_local.go7 api.BaseRoutes.LDAP.Handle("/migrateid", api.APILocal(migrateIdLdap)).Methods("POST")
8 api.BaseRoutes.LDAP.Handle("/sync", api.APILocal(syncLdap)).Methods("POST")
9 api.BaseRoutes.LDAP.Handle("/test", api.APILocal(testLdap)).Methods("POST")
10 api.BaseRoutes.LDAP.Handle("/groups", api.APILocal(getLdapGroups)).Methods("GET")
11 …api.BaseRoutes.LDAP.Handle("/certificate/public", api.APILocal(addLdapPublicCertificate)).Methods(…
12 …Routes.LDAP.Handle("/certificate/private", api.APILocal(addLdapPrivateCertificate)).Methods("POST")
13 …tes.LDAP.Handle("/certificate/public", api.APILocal(removeLdapPublicCertificate)).Methods("DELETE")
14 …s.LDAP.Handle("/certificate/private", api.APILocal(removeLdapPrivateCertificate)).Methods("DELETE")
H A Dplugin_local.go7 api.BaseRoutes.Plugins.Handle("", api.APILocal(uploadPlugin)).Methods("POST")
8 api.BaseRoutes.Plugins.Handle("", api.APILocal(getPlugins)).Methods("GET")
9 …api.BaseRoutes.Plugins.Handle("/install_from_url", api.APILocal(installPluginFromURL)).Methods("PO…
10 api.BaseRoutes.Plugin.Handle("", api.APILocal(removePlugin)).Methods("DELETE")
11 api.BaseRoutes.Plugin.Handle("/enable", api.APILocal(enablePlugin)).Methods("POST")
12 api.BaseRoutes.Plugin.Handle("/disable", api.APILocal(disablePlugin)).Methods("POST")
13 …api.BaseRoutes.Plugins.Handle("/marketplace", api.APILocal(installMarketplacePlugin)).Methods("POS…
14 api.BaseRoutes.Plugins.Handle("/marketplace", api.APILocal(getMarketplacePlugins)).Methods("GET")
/dports/math/unuran/unuran-1.8.1/doc/src/
H A Dmethods.dh3 =NODE Methods Methods for generating non-uniform random variates
62 =UP Methods [10]
87 =UP Methods [20]
111 =UP Methods [30]
123 =UP Methods [35]
142 =UP Methods [40]
164 =UP Methods [50]
187 =NODEX Methods_for_MATR Methods for random matrices
188 =UP Methods [60]
200 =UP Methods [70]
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/cmd/querytee/
H A Dmain.go67 …{Path: "/loki/api/v1/query_range", RouteName: "api_v1_query_range", Methods: []string{"GET"}, Resp…
68 …{Path: "/loki/api/v1/query", RouteName: "api_v1_query", Methods: []string{"GET"}, ResponseComparat…
69 …{Path: "/loki/api/v1/label", RouteName: "api_v1_label", Methods: []string{"GET"}, ResponseComparat…
70 …{Path: "/loki/api/v1/labels", RouteName: "api_v1_labels", Methods: []string{"GET"}, ResponseCompar…
71 …{Path: "/loki/api/v1/label/{name}/values", RouteName: "api_v1_label_name_values", Methods: []strin…
72 …{Path: "/loki/api/v1/series", RouteName: "api_v1_series", Methods: []string{"GET"}, ResponseCompar…
73 …{Path: "/api/prom/query", RouteName: "api_prom_query", Methods: []string{"GET"}, ResponseComparato…
74 …{Path: "/api/prom/label", RouteName: "api_prom_label", Methods: []string{"GET"}, ResponseComparato…
75 …{Path: "/api/prom/label/{name}/values", RouteName: "api_prom_label_name_values", Methods: []string…
76 …{Path: "/api/prom/series", RouteName: "api_prom_series", Methods: []string{"GET"}, ResponseCompara…

12345678910>>...337