Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 1,189 for norm (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

    1. return false;
    2. }
    3.  
    4. protected void buildFormParams(final SearchForm form) {
    5.  
    6. final HttpSession session = request.getSession(false);
    7. if (session != null) {
    8. final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE);
    9. if (resultsPerPage instanceof Integer) {
    10. form.num = (Integer) resultsPerPage;
    11. }
    12. }
    13.  
    14. // label
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. tests/delete_test.go

    1. package tests_test
    2.  
    3. import (
    4. "errors"
    5. "testing"
    6.  
    7. "gorm.io/gorm"
    8. "gorm.io/gorm/clause"
    9. . "gorm.io/gorm/utils/tests"
    10. )
    11.  
    12. func TestDelete(t *testing.T) {
    13. users := []User{*GetUser("delete", Config{}), *GetUser("delete", Config{}), *GetUser("delete", Config{})}
    14.  
    15. if err := DB.Create(&users).Error; err != nil {
    16. t.Errorf("errors happened when create: %v", err)
    17. }
    18.  
    19. for _, user := range users {
    20. if user.ID == 0 {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Oct 10 07:03:34 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/adminlte.min.css.map

    1;\n}\n\n.form-control:-ms-input-placeholder {\n  color: #939ba2;\n  opacity: 1;\n}\n\n.form-control::-ms-input-placeholder {\n  color: #939ba2;\n  opacity: 1;\n}\n\n.form-control::placeholder {\n  color: #939ba2;\n  opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n  background-color: #e9ecef;\n  opacity: 1;\n}\n\ninput[type=\"date\"].form-control,\ninput[type=\"time\"].form-control,\ninput[type=\"datetime-local\"].form-control,\ninput[type=\"month\"].form-control {\n  -webkit-appearance:...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  4. src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery.jsp

    1. </div>
    2. </div>
    3. <div class="form-group row">
    4. <label for="queries" class="col-sm-2 text-sm-right col-form-label"><la:message
    5. key="labels.related_query_queries"/></label>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost.jsp

    1. styleClass="form-control"/>
    2. </div>
    3. </div>
    4. <div class="form-group row">
    5. <label for="duplicateHostName" class="col-sm-2 text-sm-right col-form-label"><la:message
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  6. cmd/signature-v4-parser.go

    1. return signedHeaders, ErrNone
    2. }
    3.  
    4. // signValues data type represents structured form of AWS Signature V4 header.
    5. type signValues struct {
    6. Credential credentialHeader
    7. SignedHeaders []string
    8. Signature string
    9. }
    10.  
    11. // preSignValues data type represents structured form of AWS Signature V4 query string.
    12. type preSignValues struct {
    13. signValues
    14. Date time.Time
    15. Expires time.Duration
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/group/admin_group_edit.jsp

    1. <la:errors property="_global"/>
    2. </div>
    3. <div class="form-group row">
    4. <label for="name" class="col-sm-3 text-sm-right col-form-label"><la:message
    5. key="labels.group_name"/></label>
    6. <div class="col-sm-9">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Hashing.java

    1. * that this uses unsigned integers (see {@link com.google.common.primitives.UnsignedInts}).
    2. * Comparisons between the two should take this into account.
    3. *
    4. * <p>Fingerprint2011() is a form of Murmur2 on strings up to 32 bytes and a form of CityHash for
    5. * longer strings. It could have been one or the other throughout. The main advantage of the
    6. * combination is that CityHash has a bunch of special cases for short strings that don't need to
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. callbacks/raw.go

    1. package callbacks
    2.  
    3. import (
    4. "gorm.io/gorm"
    5. )
    6.  
    7. func RawExec(db *gorm.DB) {
    8. if db.Error == nil && !db.DryRun {
    9. result, err := db.Statement.ConnPool.ExecContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
    10. if err != nil {
    11. db.AddError(err)
    12. return
    13. }
    14.  
    15. db.RowsAffected, _ = result.RowsAffected()
    16. }
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Nov 29 01:33:20 UTC 2021
    - 336 bytes
    - Viewed (0)
  10. licenses/github.com/spf13/afero/LICENSE.txt

    1. exercising permissions granted by this License.
    2.  
    3. "Source" form shall mean the preferred form for making modifications,
    4. including but not limited to software source code, documentation
    5. source, and configuration files.
    6.  
    7. "Object" form shall mean any form resulting from mechanical
    8. transformation or translation of a Source form, including but
    9. not limited to compiled object code, generated documentation,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 9.9K bytes
    - Viewed (0)
Back to top