- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 447 for spice (0.04 sec)
-
guava/src/com/google/common/math/BigIntegerMath.java
- }
- /**
- * Returns {@code n!}, that is, the product of the first {@code n} positive integers, or {@code 1}
- * if {@code n == 0}.
- *
- * <p><b>Warning:</b> the result takes <i>O(n log n)</i> space, so use cautiously.
- *
- * <p>This uses an efficient binary recursive algorithm to compute the factorial with balanced
- * multiplies. It also removes all the 2s from the intermediate products (shifting them back in at
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 18.8K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/sanitize.js
urn a.replace(/\s+$/,"")},capitalize:function(b){var c=b.split(" ");return a.each(c,function(a,b){c[a]=b.substr(0,1).toUpperCase()+b.substr(1,b.length)}),c.join(" ")},insert:function(a,b,c){var d=(b.attr("data-sanitize-insert-"+c)||"").replace(/\[SPACE\]/g," ");return"left"===c&&0===a.indexOf(d)||"right"===c&&a.substring(a.length-d.length)===d?a:("left"===c?d:"")+a+("right"===c?d:"")},insertRight:function(a,b){return this.insert(a,b,"right")},insertLeft:function(a,b){return this.insert(a,b,"left...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 2.7K bytes - Viewed (0) -
docs/tr/docs/python-types.md
- Ardından, programcıların en iyi arkadaşı olan otomatik tamamlama ile denediniz.
- 'first_name', ardından bir nokta ('.') yazıp otomatik tamamlamayı tetiklemek için 'Ctrl+Space' tuşlarına bastınız.
- Ancak, ne yazık ki, yararlı hiçbir şey elde edemediniz:
- <img src="/img/python-types/image01.png">
- ### Tipleri ekle
- Önceki sürümden sadece bir satırı değiştirelim.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
finisher_api.go
- func (db *DB) CreateInBatches(value interface{}, batchSize int) (tx *DB) {
- reflectValue := reflect.Indirect(reflect.ValueOf(value))
- switch reflectValue.Kind() {
- case reflect.Slice, reflect.Array:
- var rowsAffected int64
- tx = db.getInstance()
- // the reflection length judgment of the optimized value
- reflectLen := reflectValue.Len()
- callFc := func(tx *DB) error {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Sep 14 12:58:29 UTC 2024 - 22.8K bytes - Viewed (0) -
internal/bucket/encryption/bucket-sse-config_test.go
- expectedErr: nil,
- shouldPass: true,
- expectedConfig: actualAES256NoNSConfig,
- },
- // 8. Space characters in MasterKeyID
- {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 16 18:28:30 UTC 2022 - 6.1K bytes - Viewed (0) -
docs/es/docs/python-types.md
- Luego lo intentas con el viejo amigo de los programadores, el auto-completado del editor.
- Escribes el primer parámetro de la función `first_name`, luego un punto (`.`) y luego presionas `Ctrl+Space` para iniciar el auto-completado.
- Tristemente, no obtienes nada útil:
- <img src="https://fastapi.tiangolo.com/img/python-types/image01.png">
- ### Añade tipos
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.1K bytes - Viewed (1) -
common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto
- // There must be at least one member in this slice.
- // A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request.
- // +listType=atomic
- // Required.
- repeated Subject subjects = 1;
- // `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the
- // target resource.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 19.4K bytes - Viewed (0) -
cmd/fmt-gen.go
- DIR:
- DIR points to a directory on a filesystem. When you want to combine
- multiple drives into a single large system, pass one directory per
- filesystem separated by space. You may also use a '...' convention
- to abbreviate the directory arguments. Remote directories in a
- distributed setup are encoded as HTTP(s) URIs.
- {{if .VisibleFlags}}
- FLAGS:
- {{range .VisibleFlags}}{{.}}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 3.7K bytes - Viewed (0) -
guava/src/com/google/common/base/CaseFormat.java
- // deal with camel conversion
- StringBuilder out = null;
- int i = 0;
- int j = -1;
- while ((j = wordBoundary.indexIn(s, ++j)) != -1) {
- if (i == 0) {
- // include some extra space for separators
- out = new StringBuilder(s.length() + 4 * format.wordSeparator.length());
- out.append(format.normalizeFirstWord(s.substring(i, j)));
- } else {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 19 20:20:14 UTC 2022 - 6.3K bytes - Viewed (0) -
cmd/config.go
- configHistory = append(configHistory, cfgEntry)
- count--
- if count == 0 {
- break
- }
- }
- if !res.IsTruncated {
- // We are done here
- break
- }
- marker = res.NextMarker
- }
- sort.Slice(configHistory, func(i, j int) bool {
- return configHistory[i].CreateTime.Before(configHistory[j].CreateTime)
- })
- return configHistory, nil
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 23 10:07:06 UTC 2023 - 6K bytes - Viewed (0)