Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,189 for norm (0.02 sec)

  1. tests/serializer_test.go

    1. "fmt"
    2. "reflect"
    3. "strings"
    4. "testing"
    5. "time"
    6.  
    7. "gorm.io/gorm"
    8. "gorm.io/gorm/schema"
    9. . "gorm.io/gorm/utils/tests"
    10. )
    11.  
    12. type SerializerStruct struct {
    13. gorm.Model
    14. Name []byte `gorm:"json"`
    15. Roles Roles `gorm:"serializer:json"`
    16. Roles2 *Roles `gorm:"serializer:json"`
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

    1. public HtmlResponse create(final CreateForm form) {
    2. verifyCrudMode(form.crudMode, CrudMode.CREATE);
    3. validate(form, messages -> {}, this::asEditHtml);
    4. validateAttributes(form.attributes, v -> throwValidationError(v, this::asEditHtml));
    5. verifyPassword(form, this::asEditHtml);
    6. verifyToken(this::asEditHtml);
    7. getUser(form).ifPresent(entity -> {
    8. 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)
  3. tests/default_value_test.go

    1. import (
    2. "testing"
    3. "time"
    4.  
    5. "gorm.io/gorm"
    6. )
    7.  
    8. func TestDefaultValue(t *testing.T) {
    9. type Harumph struct {
    10. gorm.Model
    11. Email string `gorm:"not null;index:,unique"`
    12. Name string `gorm:"notNull;default:foo"`
    13. Name2 string `gorm:"size:233;not null;default:'foo'"`
    14. Name3 string `gorm:"size:233;notNull;default:''"`
    15. Age int `gorm:"default:18"`
    16. 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)
  4. docs/em/docs/tutorial/request-forms-and-files.md

    1. ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ ๐Ÿ“ & ๐Ÿ“จ ๐Ÿ‘ ๐ŸŽ ๐Ÿ•ฐ โš™๏ธ `File` & `Form`.
    2.  
    3. /// info
    4.  
    5. ๐Ÿ“จ ๐Ÿ“‚ ๐Ÿ“ &amp; /โš–๏ธ ๐Ÿ“จ ๐Ÿ“Š, ๐Ÿฅ‡ โŽ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    6.  
    7. ๐Ÿคถ โ“‚. `pip install python-multipart`.
    8.  
    9. ///
    10.  
    11. ## ๐Ÿ—„ `File` &amp; `Form`
    12.  
    13. ```Python hl_lines="1"
    14. {!../../docs_src/request_forms_and_files/tutorial001.py!}
    15. ```
    16.  
    17. ## ๐Ÿ”ฌ `File` &amp; `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)
  5. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

    1. <div class="form-group row">
    2. <label class="col-sm-3 text-sm-right col-form-label">_id</label>
    3. <div class="col-sm-9">${f:h(id)}</div>
    4. </div>
    5. <div class="form-group row">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/advance.jsp

    1. suffix="errors.front_suffix"
    2. />
    3. </div>
    4. <div class="form-group row">
    5. <label for="as_q" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    6. key="labels.advance_search_must_queries"
    7. /></label>
    8. <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    9. <input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}">
    10. </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)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

    1. op.setup(form -> {
    2. form.initialize();
    3. form.crudMode = CrudMode.CREATE;
    4. form.dictId = dictId;
    5. });
    6. });
    7. }
    8.  
    9. @Execute
    10. @Secured({ ROLE })
    11. public HtmlResponse edit(final EditForm form) {
    12. 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)
  8. schema/utils_test.go

    1. `gorm:"column:db" other:"before:value;column:db;after:value"`: `gorm:"" other:"before:value;column:db;after:value"`,
    2. `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)
  9. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_edit.jsp

    1. <la:text styleId="term" property="term" styleClass="form-control"/>
    2. </div>
    3. </div>
    4. <div class="form-group row">
    5. <label for="query" class="col-sm-3 text-sm-right col-form-label"><la:message
    6. 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)
  10. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

    1. <div class="form-inline col-sm-9">
    2. <la:errors property="jobLogging"/>
    3. <div class="form-check">
    4. <la:checkbox styleId="jobLogging" styleClass="form-check-input" property="jobLogging"/>
    5. <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)
Back to top