Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Leslie (0.22 sec)

  1. RELEASE.md

    Gugala, Kayou, Kazuaki Ishizaki, Keith Smiley, Khaled Besrour, Kilaru Yasaswi
    Sri Chandra Gandhi, Kim, Young Soo, Kristian Hartikainen, Kwabena W. Agyeman,
    Leslie-Fang, Leslie-Fang-Intel, Li, Guizi, Lukas Geiger, Lutz Roeder, M\U00E5Ns
    Nilsson, Mahmoud Abuzaina, Manish, Marcel Koester, Marcin Sielski, marload,
    Martin Jul, Matt Conley, mdfaijul, Meng, Peng, Meteorix, Michael Käufl,
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. cmd/batch-expire.go

    				// Copying toDel to select from objects whose
    				// deletion failed
    				copy(toDelCopy, toDel)
    				var failed int
    				errs := r.Expire(ctx, api, vc, toDel)
    				// reslice toDel in preparation for next retry
    				// attempt
    				toDel = toDel[:0]
    				for i, err := range errs {
    					if err != nil {
    						stopFn(toDelCopy[i], err)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 21K bytes
    - Viewed (1)
  3. src/bytes/buffer.go

    func (b *Buffer) grow(n int) int {
    	m := b.Len()
    	// If buffer is empty, reset to recover space.
    	if m == 0 && b.off != 0 {
    		b.Reset()
    	}
    	// Try to grow by means of a reslice.
    	if i, ok := b.tryGrowByReslice(n); ok {
    		return i
    	}
    	if b.buf == nil && n <= smallBufferSize {
    		b.buf = make([]byte, n, smallBufferSize)
    		return 0
    	}
    	c := cap(b.buf)
    	if n <= c/2-m {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.2.md

    * GCI: Add two GCI specific metadata pairs ([#25105](https://github.com/kubernetes/kubernetes/pull/25105), [@andyzheng0831](https://github.com/andyzheng0831))
    * Add an entry to the salt config to allow Debian jessie on GCE. ([#25123](https://github.com/kubernetes/kubernetes/pull/25123), [@jlewi](https://github.com/jlewi))
        * As with the existing Wheezy image on GCE, docker is expected to already be installed in the image.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Viewed (0)
  5. docs/fr/docs/alternatives.md

    Supporter la norme ouverte pour les API, OpenAPI.
    
    ### <a href="https://flask-apispec.readthedocs.io/en/latest/" class="external-link" target="_blank">Flask-apispec</a>
    
    C'est un plug-in pour Flask, qui relie Webargs, Marshmallow et APISpec.
    
    Il utilise les informations de Webargs et Marshmallow pour générer automatiquement des schémas OpenAPI, en utilisant APISpec.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    #### Docker runtime Known Issues
    
    - Kernel crash with Aufs storage driver on Debian Jessie ([#27885](https://github.com/kubernetes/kubernetes/issues/27885))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Docker versions 1.10.3 - 1.12.3
      * Docker version 1.11.2 known issues
        - Kernel crash with Aufs storage driver on Debian Jessie ([#27885]((https://github.com/kubernetes/kubernetes/issues/27885))
          which can be identified by the [node problem detector](http://kubernetes.io/docs/admin/node-problem/)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `And be quick about it,' added the Hatter, `or you'll be asleep
    again before it's done.'
    
      `Once upon a time there were three little sisters,' the
    Dormouse began in a great hurry; `and their names were Elsie,
    Lacie, and Tillie; and they lived at the bottom of a well--'
    
      `What did they live on?' said Alice, who always took a great
    interest in questions of eating and drinking.
    
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `And be quick about it,' added the Hatter, `or you'll be asleep
    again before it's done.'
    
      `Once upon a time there were three little sisters,' the
    Dormouse began in a great hurry; `and their names were Elsie,
    Lacie, and Tillie; and they lived at the bottom of a well--'
    
      `What did they live on?' said Alice, who always took a great
    interest in questions of eating and drinking.
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

              ([#41516](https://github.com/kubernetes/kubernetes/issues/41516))
    
    - Docker 1.11.2
    
        - **Known issues**
    
            - Kernel crash with Aufs storage driver on Debian Jessie
              ([#27885](https://github.com/kubernetes/kubernetes/issues/27885)).
              The issue can be identified by using the node problem detector.
    
            - File descriptor leak on init/control.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
Back to top