- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,189 for norm (0.02 sec)
-
tests/serializer_test.go
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Apr 21 14:09:38 UTC 2023 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
- public HtmlResponse create(final CreateForm form) {
- verifyCrudMode(form.crudMode, CrudMode.CREATE);
- validate(form, messages -> {}, this::asEditHtml);
- validateAttributes(form.attributes, v -> throwValidationError(v, this::asEditHtml));
- verifyPassword(form, this::asEditHtml);
- verifyToken(this::asEditHtml);
- getUser(form).ifPresent(entity -> {
- try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.9K bytes - Viewed (0) -
tests/default_value_test.go
- import (
- "testing"
- "time"
- "gorm.io/gorm"
- )
- func TestDefaultValue(t *testing.T) {
- type Harumph struct {
- gorm.Model
- Email string `gorm:"not null;index:,unique"`
- Name string `gorm:"notNull;default:foo"`
- Name2 string `gorm:"size:233;not null;default:'foo'"`
- Name3 string `gorm:"size:233;notNull;default:''"`
- Age int `gorm:"default:18"`
- Created time.Time `gorm:"default:2000-01-02"`
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 08 03:29:55 UTC 2024 - 2.3K bytes - Viewed (0) -
docs/em/docs/tutorial/request-forms-and-files.md
- ๐ ๐ช ๐ฌ ๐ & ๐จ ๐ ๐ ๐ฐ โ๏ธ `File` & `Form`.
- /// info
- ๐จ ๐ ๐ & /โ๏ธ ๐จ ๐, ๐ฅ โ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
- ๐คถ โ. `pip install python-multipart`.
- ///
- ## ๐ `File` & `Form`
- ```Python hl_lines="1"
- {!../../docs_src/request_forms_and_files/tutorial001.py!}
- ```
- ## ๐ฌ `File` & `Form` ๐ข
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 24.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
- suffix="errors.front_suffix"
- />
- </div>
- <div class="form-group row">
- <label for="as_q" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
- key="labels.advance_search_must_queries"
- /></label>
- <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
- <input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}">
- </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
- op.setup(form -> {
- form.initialize();
- form.crudMode = CrudMode.CREATE;
- form.dictId = dictId;
- });
- });
- }
- @Execute
- @Secured({ ROLE })
- public HtmlResponse edit(final EditForm form) {
- validate(form, messages -> {}, () -> asListHtml(form.dictId));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 18.6K bytes - Viewed (0) -
schema/utils_test.go
- `gorm:"column:db" other:"before:value;column:db;after:value"`: `gorm:"" other:"before:value;column:db;after:value"`,
- `gorm:"before:value;column:db ;after:value" other:"before:value;column:db;after:value"`: `gorm:"before:value;after:value" other:"before:value;column:db;after:value"`,
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Jul 31 10:19:25 UTC 2020 - 1.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_edit.jsp
- <la:text styleId="term" property="term" styleClass="form-control"/>
- </div>
- </div>
- <div class="form-group row">
- <label for="query" class="col-sm-3 text-sm-right col-form-label"><la:message
- key="labels.key_match_query"/></label>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp
- <div class="form-inline col-sm-9">
- <la:errors property="jobLogging"/>
- <div class="form-check">
- <la:checkbox styleId="jobLogging" styleClass="form-check-input" property="jobLogging"/>
- <label for="jobLogging" class="form-check-label">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 16 12:54:35 UTC 2023 - 9.6K bytes - Viewed (0)