Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Leslie (0.2 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. 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)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.7.md

            * live-restore not fully supported
    
            * no shared pid namespace support
    
        * Docker version 1.11.2 known issues
    
            * Kernel crash with Aufs storage driver on Debian Jessie ([#27885](https://github.com/kubernetes/kubernetes/pull/27885)) which can be identified by the [node problem detector](https://kubernetes.io/docs/tasks/debug-application-cluster/monitor-node-health/)
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Viewed (1)
Back to top