Home
last modified time | relevance | path

Searched refs:Post (Results 1 – 25 of 8376) sorted by relevance

12345678910>>...336

/dports/science/py-lifelines/lifelines-0.19.5/lifelines/datasets/
H A Dgbsg2.csv2 no,70,Post,21,II,3,48,66,1814,1
3 yes,56,Post,12,II,7,61,77,2018,1
4 yes,58,Post,35,II,9,52,271,712,1
5 yes,59,Post,17,II,4,60,29,1807,1
6 no,73,Post,35,II,1,26,65,772,1
8 yes,59,Post,8,II,2,181,0,2172,0
9 no,65,Post,16,II,1,192,25,2161,0
10 no,80,Post,39,II,30,0,59,471,1
11 no,66,Post,18,II,7,0,3,2014,0
12 yes,68,Post,40,II,9,16,20,577,1
[all …]
/dports/devel/flyspray/flyspray-0.9.9.7_4/includes/
H A Dmodify.inc.php17 $lt = Post::isAlnum('list_type') ? Post::val('list_type') : '';
44 if (!Post::val('item_summary') || !Post::val('detailed_desc')) {
264 if (!Post::val('user_name') || !Post::val('real_name')
370 if (Post::val('user_pass') != Post::val('user_pass2')) {
413 if (!Post::val('user_name') || !Post::val('real_name')
421 if (Post::val('user_pass') != Post::val('user_pass2')) {
682 if (!Post::val('real_name') || (!Post::val('email_address') && !Post::val('jabber_id'))) {
737 … array(Post::val('real_name'), Post::val('email_address'), Post::num('notify_own', 0),
740 Post::num('tasks_perpage'), Post::num('time_zone'), Post::num('user_id')));
750 array(Post::val('group_in'), Post::val('old_global_id'), Post::val('user_id')));
[all …]
/dports/www/gitea/gitea-1.16.5/routers/web/
H A Dweb.go385 m.Post("/logout", auth.SignOut)
406 m.Post("/add", admin.AddWorkers)
408 m.Post("/flush", admin.Flush)
433 m.Post("/delete", admin.DeleteRepo)
623 m.Post("", repo.AddTeamPost)
646 Post(repo.GitHooksEditPost)
665 m.Post("/test", repo.TestWebhook)
695 m.Post("/", repo.LFSLockFile)
734 m.Post("/watch", repo.IssueWatch)
874 m.Post("/topics", repo.TopicsPost)
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/ada/libgnat/
H A Da-chahan.ads63 Post => Is_Control'Result =
70 Post => Is_Graphic'Result =
77 Post => Is_Letter'Result =
86 Post => Is_Lower'Result =
95 Post => Is_Upper'Result =
104 Post => Is_Basic'Result =
146 Post => Is_Special'Result =
184 Post => Is_NFKC'Result =
210 Post => To_Lower'Result =
225 Post => To_Upper'Result =
[all …]
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
96 Post => Sin'Result in -1.0 .. 1.0
101 Post => Sin'Result in -1.0 .. 1.0
106 Post => Cos'Result in -1.0 .. 1.0
111 Post => Cos'Result in -1.0 .. 1.0
181 Post => Cosh'Result >= 1.0
185 Post => Tanh'Result in -1.0 .. 1.0
190 Post => abs Coth'Result >= 1.0;
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/store/localcachelayer/
H A Dpost_layer_test.go54 cachedStore.Post().GetEtag(channelId, true, false)
56 cachedStore.Post().GetEtag(channelId, false, false)
66 cachedStore.Post().GetEtag(channelId, true, false)
69 cachedStore.Post().GetEtag(channelId, true, false)
79 cachedStore.Post().GetEtag(channelId, true, false)
81 cachedStore.Post().ClearCaches()
82 cachedStore.Post().GetEtag(channelId, true, false)
111 cachedStore.Post().GetPostsSince(fakeOptions, true)
123 cachedStore.Post().GetPostsSince(fakeOptions, true)
126 cachedStore.Post().GetPostsSince(fakeOptions, true)
[all …]
/dports/databases/elixir-ecto/ecto-2.2.10/integration_test/cases/
H A Dinterval.exs4 alias Ecto.Integration.Post
12 TestRepo.insert!(%Post{posted: @posted, inserted_at: @inserted_at})
18 assert [{2015, 1, 1}] = TestRepo.all(from p in Post, select: date_add(p.posted, 1, "year"))
82 TestRepo.all(from p in Post, select: datetime_add(p.inserted_at, 1, "year"))
124 TestRepo.all(from p in Post, select: datetime_add(p.inserted_at, 5, "day"))
128 TestRepo.all(from p in Post, select: datetime_add(p.inserted_at, ^5, "day"))
270 assert [{{y, _, _}, _}] = TestRepo.all(from p in Post, select: ago(5, "year"))
272 assert [{{y, _, _}, _}] = TestRepo.all(from p in Post, select: ago(5.0, "year"))
274 assert [{{y, _, _}, _}] = TestRepo.all(from p in Post, select: ago(^5, "year"))
276 assert [{{y, _, _}, _}] = TestRepo.all(from p in Post, select: ago(^5.0, "year"))
[all …]
H A Drepo.exs52 %Post{} = TestRepo.insert!(%Post{title: "title1"})
53 %Post{} = TestRepo.insert!(%Post{title: "title2"})
223 assert %Post{id: 1} = TestRepo.insert!(%Post{id: 1})
702 assert [%Post{}, %Post{}] = TestRepo.all(Post)
868 assert %Post{visits: 2} = TestRepo.get(Post, id1)
869 assert %Post{visits: 3} = TestRepo.get(Post, id2)
875 assert %Post{visits: 1} = TestRepo.get(Post, id1)
876 assert %Post{visits: 2} = TestRepo.get(Post, id2)
881 assert %Post{id: id1} = TestRepo.insert!(%Post{})
889 assert %Post{id: id} = TestRepo.insert!(%Post{})
[all …]
/dports/databases/elixir-ecto/ecto-2.2.10/test/ecto/query/
H A Dinspect_test.exs1 defmodule Inspect.Post do module
7 has_one :post, Inspect.Post
22 alias Inspect.Post
51 assert i(from(Post, [])) ==
52 ~s{from p in Inspect.Post}
54 assert i(from(x in Post, [])) ==
55 ~s{from p in Inspect.Post}
63 assert i(from(subquery(Post), [])) ==
114 assert i(from(x in Post, limit: 123)) ==
180 from p in Inspect.Post,
[all …]
/dports/www/writefreely/writefreely-0.13.1/templates/
H A Dedit-meta.tmpl5 …<title>Edit metadata: {{if .Post.Title}}{{.Post.Title}}{{else}}{{.Post.Id}}{{end}} &mdash; {{.Site…
47 …f="{{if .EditCollection}}{{.EditCollection.CanonicalURL}}{{.Post.Slug}}/edit{{else}}/{{.Post.Id}}/…
55Post.Title}}{{.Post.Title}}{{else}}{{.Post.Id}}{{end}} <a href="/{{if .EditCollection}}{{if not .S…
64 <dd><input type="text" id="slug" name="slug" value="{{.Post.Slug}}" /></dd>
71 … <option value="aa"{{if eq "aa" .Post.Language.String}} selected="selected"{{end}}>Afaraf</option>
73 … <option value="ak"{{if eq "ak" .Post.Language.String}} selected="selected"{{end}}>Akan</option>
74 … <option value="sq"{{if eq "sq" .Post.Language.String}} selected="selected"{{end}}>Shqip</option>
75 … <option value="am"{{if eq "am" .Post.Language.String}} selected="selected"{{end}}>አማርኛ</option>
88 … <option value="bn"{{if eq "bn" .Post.Language.String}} selected="selected"{{end}}>বাংলা</option>
94 … <option value="my"{{if eq "my" .Post.Language.String}} selected="selected"{{end}}>ဗမာစာ</option>
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/ada/
H A Da-ngelfu.ads43 Post => Sqrt'Result >= 0.0
65 Post => (if X = 1.0 then Log'Result = 0.0);
74 Post => "**"'Result >= 0.0
81 Post => Sin'Result in -1.0 .. 1.0
85 Post => Sin'Result in -1.0 .. 1.0
89 Post => Cos'Result in -1.0 .. 1.0
93 Post => Cos'Result in -1.0 .. 1.0
148 Post => Cosh'Result >= 1.0
152 Post => Tanh'Result in -1.0 .. 1.0
156 Post => abs Coth'Result >= 1.0;
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/ada/
H A Da-ngelfu.ads43 Post => Sqrt'Result >= 0.0
49 Post => (if X = 1.0 then Log'Result = 0.0);
58 Post => "**"'Result >= 0.0
65 Post => Sin'Result in -1.0 .. 1.0
69 Post => Sin'Result in -1.0 .. 1.0
73 Post => Cos'Result in -1.0 .. 1.0
77 Post => Cos'Result in -1.0 .. 1.0
132 Post => Cosh'Result >= 1.0
136 Post => Tanh'Result in -1.0 .. 1.0
140 Post => abs Coth'Result >= 1.0;
[all …]
/dports/lang/gnat_util/gcc-6-20180516/gcc/ada/
H A Da-ngelfu.ads43 Post => Sqrt'Result >= 0.0
65 Post => (if X = 1.0 then Log'Result = 0.0);
74 Post => "**"'Result >= 0.0
81 Post => Sin'Result in -1.0 .. 1.0
85 Post => Sin'Result in -1.0 .. 1.0
89 Post => Cos'Result in -1.0 .. 1.0
93 Post => Cos'Result in -1.0 .. 1.0
148 Post => Cosh'Result >= 1.0
152 Post => Tanh'Result in -1.0 .. 1.0
156 Post => abs Coth'Result >= 1.0;
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/ada/
H A Da-ngelfu.ads44 Post => Sqrt'Result >= 0.0
50 Post => (if X = 1.0 then Log'Result = 0.0);
62 Post => "**"'Result >= 0.0
70 Post => Sin'Result in -1.0 .. 1.0
75 Post => Sin'Result in -1.0 .. 1.0
80 Post => Cos'Result in -1.0 .. 1.0
85 Post => Cos'Result in -1.0 .. 1.0
152 Post => Cosh'Result >= 1.0
157 Post => Tanh'Result in -1.0 .. 1.0
162 Post => abs Coth'Result >= 1.0;
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/gcc/ada/
H A Da-ngelfu.ads44 Post => Sqrt'Result >= 0.0
50 Post => (if X = 1.0 then Log'Result = 0.0);
62 Post => "**"'Result >= 0.0
70 Post => Sin'Result in -1.0 .. 1.0
75 Post => Sin'Result in -1.0 .. 1.0
80 Post => Cos'Result in -1.0 .. 1.0
85 Post => Cos'Result in -1.0 .. 1.0
152 Post => Cosh'Result >= 1.0
157 Post => Tanh'Result in -1.0 .. 1.0
162 Post => abs Coth'Result >= 1.0;
[all …]
/dports/lang/gcc6-aux/bootstrap/lib/gcc/x86_64-aux-dragonfly4.1/5.1.0/adainclude/
H A Da-ngelfu.ads43 Post => Sqrt'Result >= 0.0
66 Post => (if X = 1.0 then Log'Result = 0.0);
75 Post => "**"'Result >= 0.0
82 Post => Sin'Result in -1.0 .. 1.0
86 Post => Sin'Result in -1.0 .. 1.0
90 Post => Cos'Result in -1.0 .. 1.0
94 Post => Cos'Result in -1.0 .. 1.0
149 Post => Cosh'Result >= 1.0
153 Post => Tanh'Result in -1.0 .. 1.0
157 Post => abs Coth'Result >= 1.0;
[all …]
/dports/net/libkgapi/libkgapi-21.12.3/src/blogger/
H A Dpost.cpp15 class Q_DECL_HIDDEN Post::Private
44 Post::Private::Private() in Private()
49 Post::Post() in Post() function in Post
54 Post::~Post() in ~Post()
59 QString Post::id() in id()
69 QString Post::blogId() in blogId()
99 QUrl Post::url() const in url()
109 QString Post::title() const in title()
119 QString Post::content() const in content()
139 QUrl Post::authorUrl() const in authorUrl()
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/
H A Dpost_store.go658 o4, err := ss.Post().Save(&model.Post{
1412 _, err = ss.Post().Save(&model.Post{
1526 post1, err := ss.Post().Save(&model.Post{
2341 o4, err := ss.Post().Save(&model.Post{
2349 o5, err := ss.Post().Save(&model.Post{
2467 o4, err := ss.Post().Save(&model.Post{
2707 _, err = ss.Post().Save(&model.Post{
2828 _, err2 = ss.Post().Save(&model.Post{
2836 _, err2 = ss.Post().Save(&model.Post{
2844 _, err2 = ss.Post().Save(&model.Post{
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
95 Post => Sin'Result in -1.0 .. 1.0
100 Post => Sin'Result in -1.0 .. 1.0
104 Post => Cos'Result in -1.0 .. 1.0
109 Post => Cos'Result in -1.0 .. 1.0
179 Post => Cosh'Result >= 1.0
183 Post => Tanh'Result in -1.0 .. 1.0
188 Post => abs Coth'Result >= 1.0;
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
95 Post => Sin'Result in -1.0 .. 1.0
100 Post => Sin'Result in -1.0 .. 1.0
104 Post => Cos'Result in -1.0 .. 1.0
109 Post => Cos'Result in -1.0 .. 1.0
179 Post => Cosh'Result >= 1.0
183 Post => Tanh'Result in -1.0 .. 1.0
188 Post => abs Coth'Result >= 1.0;
[all …]
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
95 Post => Sin'Result in -1.0 .. 1.0
100 Post => Sin'Result in -1.0 .. 1.0
104 Post => Cos'Result in -1.0 .. 1.0
109 Post => Cos'Result in -1.0 .. 1.0
179 Post => Cosh'Result >= 1.0
183 Post => Tanh'Result in -1.0 .. 1.0
188 Post => abs Coth'Result >= 1.0;
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
95 Post => Sin'Result in -1.0 .. 1.0
100 Post => Sin'Result in -1.0 .. 1.0
104 Post => Cos'Result in -1.0 .. 1.0
109 Post => Cos'Result in -1.0 .. 1.0
179 Post => Cosh'Result >= 1.0
183 Post => Tanh'Result in -1.0 .. 1.0
188 Post => abs Coth'Result >= 1.0;
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
96 Post => Sin'Result in -1.0 .. 1.0
101 Post => Sin'Result in -1.0 .. 1.0
106 Post => Cos'Result in -1.0 .. 1.0
111 Post => Cos'Result in -1.0 .. 1.0
181 Post => Cosh'Result >= 1.0
185 Post => Tanh'Result in -1.0 .. 1.0
190 Post => abs Coth'Result >= 1.0;
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
95 Post => Sin'Result in -1.0 .. 1.0
100 Post => Sin'Result in -1.0 .. 1.0
104 Post => Cos'Result in -1.0 .. 1.0
109 Post => Cos'Result in -1.0 .. 1.0
179 Post => Cosh'Result >= 1.0
183 Post => Tanh'Result in -1.0 .. 1.0
188 Post => abs Coth'Result >= 1.0;
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/ada/libgnat/
H A Da-ngelfu.ads54 Post => Sqrt'Result >= 0.0
77 Post => (if X = 1.0 then Log'Result = 0.0);
88 Post => "**"'Result >= 0.0
95 Post => Sin'Result in -1.0 .. 1.0
100 Post => Sin'Result in -1.0 .. 1.0
104 Post => Cos'Result in -1.0 .. 1.0
109 Post => Cos'Result in -1.0 .. 1.0
179 Post => Cosh'Result >= 1.0
183 Post => Tanh'Result in -1.0 .. 1.0
188 Post => abs Coth'Result >= 1.0;
[all …]

12345678910>>...336