Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 447 for spice (0.04 sec)

  1. guava/src/com/google/common/math/BigIntegerMath.java

    1. }
    2.  
    3. /**
    4. * Returns {@code n!}, that is, the product of the first {@code n} positive integers, or {@code 1}
    5. * if {@code n == 0}.
    6. *
    7. * <p><b>Warning:</b> the result takes <i>O(n log n)</i> space, so use cautiously.
    8. *
    9. * <p>This uses an efficient binary recursive algorithm to compute the factorial with balanced
    10. * 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)
  2. 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)
  3. docs/tr/docs/python-types.md

    1. Ardından, programcıların en iyi arkadaşı olan otomatik tamamlama ile denediniz.
    2.  
    3. 'first_name', ardından bir nokta ('.') yazıp otomatik tamamlamayı tetiklemek için 'Ctrl+Space' tuşlarına bastınız.
    4.  
    5. Ancak, ne yazık ki, yararlı hiçbir şey elde edemediniz:
    6.  
    7. <img src="/img/python-types/image01.png">
    8.  
    9. ### Tipleri ekle
    10.  
    11. Ö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)
  4. finisher_api.go

    1. func (db *DB) CreateInBatches(value interface{}, batchSize int) (tx *DB) {
    2. reflectValue := reflect.Indirect(reflect.ValueOf(value))
    3.  
    4. switch reflectValue.Kind() {
    5. case reflect.Slice, reflect.Array:
    6. var rowsAffected int64
    7. tx = db.getInstance()
    8.  
    9. // the reflection length judgment of the optimized value
    10. reflectLen := reflectValue.Len()
    11.  
    12. 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)
  5. internal/bucket/encryption/bucket-sse-config_test.go

    1. expectedErr: nil,
    2. shouldPass: true,
    3. expectedConfig: actualAES256NoNSConfig,
    4. },
    5. // 8. Space characters in MasterKeyID
    6. {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 16 18:28:30 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. docs/es/docs/python-types.md

    1. Luego lo intentas con el viejo amigo de los programadores, el auto-completado del editor.
    2.  
    3. Escribes el primer parámetro de la función `first_name`, luego un punto (`.`) y luego presionas `Ctrl+Space` para iniciar el auto-completado.
    4.  
    5. Tristemente, no obtienes nada útil:
    6.  
    7. <img src="https://fastapi.tiangolo.com/img/python-types/image01.png">
    8.  
    9. ### 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)
  7. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    1. // There must be at least one member in this slice.
    2. // A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request.
    3. // +listType=atomic
    4. // Required.
    5. repeated Subject subjects = 1;
    6.  
    7. // `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the
    8. // 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)
  8. cmd/fmt-gen.go

    1. DIR:
    2. DIR points to a directory on a filesystem. When you want to combine
    3. multiple drives into a single large system, pass one directory per
    4. filesystem separated by space. You may also use a '...' convention
    5. to abbreviate the directory arguments. Remote directories in a
    6. distributed setup are encoded as HTTP(s) URIs.
    7. {{if .VisibleFlags}}
    8. FLAGS:
    9. {{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)
  9. guava/src/com/google/common/base/CaseFormat.java

    1. // deal with camel conversion
    2. StringBuilder out = null;
    3. int i = 0;
    4. int j = -1;
    5. while ((j = wordBoundary.indexIn(s, ++j)) != -1) {
    6. if (i == 0) {
    7. // include some extra space for separators
    8. out = new StringBuilder(s.length() + 4 * format.wordSeparator.length());
    9. out.append(format.normalizeFirstWord(s.substring(i, j)));
    10. } 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)
  10. cmd/config.go

    1. configHistory = append(configHistory, cfgEntry)
    2. count--
    3. if count == 0 {
    4. break
    5. }
    6. }
    7. if !res.IsTruncated {
    8. // We are done here
    9. break
    10. }
    11. marker = res.NextMarker
    12. }
    13. sort.Slice(configHistory, func(i, j int) bool {
    14. return configHistory[i].CreateTime.Before(configHistory[j].CreateTime)
    15. })
    16. return configHistory, nil
    17. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top