- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 2,300 for wave (0.02 sec)
-
docs/en/docs/async.md
```Python hl_lines="2" @app.get('/') def results(): results = some_library() return results ``` ---
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
tests/update_test.go
func TestSaveWithPrimaryValue(t *testing.T) { lang := Language{Code: "save", Name: "save"} if result := DB.Save(&lang); result.RowsAffected != 1 { t.Errorf("should create language, rows affected: %v", result.RowsAffected) } var result Language DB.First(&result, "code = ?", "save") AssertEqual(t, result, lang) lang.Name = "save name2" if result := DB.Save(&lang); result.RowsAffected != 1 {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 30.4K bytes - Viewed (0) -
cmd/mrf.go
// but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. //go:generate msgp -file=$GOFILE package cmd import ( "context"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/webapp/js/admin/bootstrap.min.js.map
G,GACzBjE,EAASC,KAAKzB,GAAUyB,IAGJ,iBAAXxE,GAAqB,CAC9B,GAA4B,oBAAjBwE,EAAKxE,GACd,MAAM,IAAIyB,UAA8BzB,sBAAxC,KAGFwE,EAAKxE,U,6BA1mBX,WACE,MAhHY,U,mBAmHd,WACE,OAAOoH,K,gBAGT,WACE,OAAOL,K,oBAGT,WACE,OAAOhE,K,iBAGT,WACE,OAAOgB,K,qBAGT,WACE,MAlIW,gB,uBAqIb,WACE,OAAO4D,O,EA/CL4W,GA0oBNzf,UAAE6C,GAAF,QAAa4c,GAAQla,iBACrBvF,UAAE6C,GAAF,QAAWkD,YAAc0Z,GACzBzf,UAAE6C,GAAF,QAAWmD,WAAa,WAEtB,OADAhG,UAAE6C,GAAF,QAAaqB,GACNub,GAAQla,kBC1uBjB,IAEMtB,GAAW,aAEXC,GAAqBlE,UAAE6C,GAAF,QAErBgZ,GAAqB,IAAI9Z,OAAJ,wBAA...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 180.9K bytes - Viewed (0) -
pom.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt
* A set of tasks that are executed in sequential order. * * Work within queues is not concurrent. This is equivalent to each queue having a dedicated thread * for its work; in practice a set of queues may share a set of threads to save resources. */ class TaskQueue internal constructor( internal val taskRunner: TaskRunner, internal val name: String, ) { internal var shutdown = false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 7.3K bytes - Viewed (0) -
docs/en/docs/tutorial/body-updates.md
* This is comparable to using the model's `.model_dump()` method again, but it makes sure (and converts) the values to data types that can be converted to JSON, for example, `datetime` to `str`. * Save the data to your DB. * Return the updated model. {* ../../docs_src/body_updates/tutorial002_py310.py hl[28:35] *} /// tip You can actually use this same technique with an HTTP `PUT` operation.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.7K bytes - Viewed (0) -
cmd/tier.go
clear(config.Tiers) // Copy over the new tier configs maps.Copy(config.Tiers, newConfig.Tiers) config.lastRefreshedAt = UTCNow() return nil } // Save saves tier configuration onto objAPI func (config *TierConfigMgr) Save(ctx context.Context, objAPI ObjectLayer) error { if objAPI == nil { return errServerNotInitialized } pr, opts, err := globalTierConfigMgr.configReader(ctx) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0) -
cmd/common-main.go
// If we don't have permission to compute the HMAC, don't change the cred. return globalActiveCred } if err != nil { logger.Fatal(err, "Unable to generate root access key using KMS") } sKey, err := GlobalKMS.MAC(GlobalContext, &kms.MACRequest{Message: []byte("root secret key")}) if err != nil { // Here, we must have permission. Otherwise, we would have failed earlier.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (0) -
cmd/metacache-set.go
continue } if yes := o.shouldSkip(ctx, entry); yes { // when we have not enough results, record the skipped entry if o.Limit > 0 && results.len() < o.Limit { results.lastSkippedEntry = entry.name } continue } if o.Limit > 0 && results.len() >= o.Limit { // We have enough and we have more. // Do not return io.EOF if resCh != nil { resErr = nil select {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 30.7K bytes - Viewed (0)