- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 966 for vorm (0.02 sec)
-
guava/src/com/google/common/base/Utf8.java
// Two-byte form. if (index == end) { return false; } // Simultaneously check for illegal trailing-byte in leading position // and overlong 2-byte form. if (byte1 < (byte) 0xC2 || bytes[index++] > (byte) 0xBF) { return false; } } else if (byte1 < (byte) 0xF0) { // Three-byte form. if (index + 1 >= end) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7K bytes - Viewed (0) -
clause/delete_test.go
package clause_test import ( "fmt" "testing" "gorm.io/gorm/clause" ) func TestDelete(t *testing.T) { results := []struct { Clauses []clause.Interface Result string Vars []interface{} }{ { []clause.Interface{clause.Delete{}, clause.From{}}, "DELETE FROM `users`", nil, }, { []clause.Interface{clause.Delete{Modifier: "LOW_PRIORITY"}, clause.From{}},
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Jun 02 01:18:01 UTC 2020 - 608 bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/MultipartBody.kt
/** * The media-type multipart/form-data follows the rules of all multipart MIME data streams as * outlined in RFC 2046. In forms, there are a series of fields to be supplied by the user who * fills out the form. Each field has a name. Within a given form, the names are unique. */ @JvmField val FORM = "multipart/form-data".toMediaType()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.9K bytes - Viewed (0) -
docs/em/docs/tutorial/request-files.md
/// ## âĢī¸â "đ¨ đŊ" đ đ¸ đ¨ (`<form></form>`) đ¨ đŊ đŊ đ âī¸ "đ" đĸ đ đ, âĢī¸ đ âĒī¸âĄī¸ đģ. **FastAPI** đ â đ â đ đ âĒī¸âĄī¸ âļī¸ī¸ đĨ âŠī¸ đģ. /// note | "đĄ âš" đ âĒī¸âĄī¸ đ¨ đ đ âī¸ "đģ đ" `application/x-www-form-urlencoded` đâ âĢī¸ đĢ đ đ. âī¸ đâ đ¨ đ đ, âĢī¸ đ `multipart/form-data`. đĨ đ âī¸ `File`, **FastAPI** đ đ âĢī¸ âī¸ đ¤ đ âĒī¸âĄī¸ â đ đĒ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0) -
tests/connection_test.go
package tests_test import ( "fmt" "testing" "gorm.io/driver/mysql" "gorm.io/gorm" ) func TestWithSingleConnection(t *testing.T) { expectedName := "test" var actualName string setSQL, getSQL := getSetSQL(DB.Dialector.Name()) if len(setSQL) == 0 || len(getSQL) == 0 { return } err := DB.Connection(func(tx *gorm.DB) error { if err := tx.Exec(setSQL, expectedName).Error; err != nil { return err
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Jan 28 14:16:42 UTC 2022 - 963 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/esreq/admin_esreq.jsp
</h3> </div> <div class="card-body"> <div class="form-group row"> <label for="requestFile" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.esreq_request_file" /></label> <div class="col-sm-9"> <input id="requestFile" type="file" name="requestFile" class="form-control-file" /> </div> </div> </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 20 09:26:42 UTC 2020 - 2.3K bytes - Viewed (0) -
src/main/webapp/css/admin/style.css
} ul.has-error { color: #dd4b39 !important; list-style-type: none; padding: 0; } .form-group .has-error + .form-control { border-color: #dd4b39 !important; box-shadow: none; } .sidebar-mini.sidebar-collapse .sidebar-search { display: none !important; } input[type="file"].form-control:not([type="file"]) { height: 0% !important; } #result ol { list-style: none !important;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 1.1K bytes - Viewed (0) -
callbacks/helper_test.go
package callbacks import ( "reflect" "testing" "gorm.io/gorm" "gorm.io/gorm/clause" ) func TestLoadOrStoreVisitMap(t *testing.T) { var vm visitMap var loaded bool type testM struct { Name string } t1 := testM{Name: "t1"} t2 := testM{Name: "t2"} t3 := testM{Name: "t3"} vm = make(visitMap) if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf(&t1)); loaded {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 05 02:22:57 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch.jsp
<div class="form-group row"> <label for="term" class="col-sm-2 text-sm-right col-form-label"><la:message key="labels.key_match_term"/></label> <div class="col-sm-10"> <la:text styleId="term" property="term" styleClass="form-control"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent.jsp
</div> </div> <div class="form-group row"> <label for="content" class="col-sm-2 text-sm-right col-form-label"><la:message key="labels.related_content_content"/></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)