Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for envfile (0.19 sec)

  1. src/cmd/cgo/internal/test/issue18146.go

    			// Dragonfly, OpenBSD) the fork call will fail
    			// with EAGAIN.
    			if pe, ok := err.(*os.PathError); ok {
    				err = pe.Err
    			}
    			if se, ok := err.(syscall.Errno); ok && (se == syscall.EAGAIN || se == syscall.EMFILE) {
    				time.Sleep(time.Millisecond)
    				continue
    			}
    
    			t.Error(err)
    			return
    		}
    		cmds = append(cmds, cmd)
    	}
    
    	failures := 0
    	for _, cmd := range cmds {
    		err := cmd.Wait()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Sep 05 23:35:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    		// Attempt to use splice/sendfile() optimization, A very specific behavior mentioned below is necessary.
    		// See https://github.com/golang/go/blob/f7c5cbb82087c55aa82081e931e0142783700ce8/src/net/sendfile_linux.go#L20
    		// Windows can lock up with this optimization, so we fall back to regular copy.
    		sr, ok := rc.(*sendFileReader)
    		if ok {
    			// Sendfile sends in 4MiB chunks per sendfile syscall which is more than enough
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/https.md

    ## Let's Encrypt
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 05 10:40:05 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    Et c'est le cas pour la plupart des applications web.
    
    Vous aurez de nombreux, nombreux utilisateurs, mais votre serveur attendra 🕙 que leur connexion peu performante envoie des requêtes.
    
    Puis vous attendrez 🕙 de nouveau que leurs réponses reviennent.
    
    Cette "attente" 🕙 se mesure en microsecondes, mais tout de même, en cumulé cela fait beaucoup d'attente.
    
    C'est pourquoi il est logique d'utiliser du code asynchrone ⏸🔀⏯ pour des APIs web.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 24K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64), const EVFILT_SYSCOUNT = 7
    pkg syscall (netbsd-arm64), const EVFILT_SYSCOUNT ideal-int
    pkg syscall (netbsd-arm64), const EVFILT_TIMER = 6
    pkg syscall (netbsd-arm64), const EVFILT_TIMER ideal-int
    pkg syscall (netbsd-arm64), const EVFILT_VNODE = 3
    pkg syscall (netbsd-arm64), const EVFILT_VNODE ideal-int
    pkg syscall (netbsd-arm64), const EVFILT_WRITE = 1
    pkg syscall (netbsd-arm64), const EVFILT_WRITE ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. internal/lock/lock_windows.go

    	accessAttr := uint32(syscall.FILE_ATTRIBUTE_NORMAL | 0x80000000)
    
    	fd, err := syscall.CreateFile(pathp, access, shareflag, nil, createflag, accessAttr, 0)
    	if err != nil {
    		return nil, err
    	}
    
    	return os.NewFile(uintptr(fd), path), nil
    }
    
    func lockFile(fd syscall.Handle, flags uint32) error {
    	// https://msdn.microsoft.com/en-us/library/windows/desktop/aa365203(v=vs.85).aspx
    	if fd == syscall.InvalidHandle {
    		return nil
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  7. pom.xml

    				</dependencies>
    				<configuration>
    					<target>
    						<ant antfile="${basedir}/dbflute.xml" target="download.dbflute" />
    						<ant antfile="${basedir}/module.xml" target="install.modules">
    							<property name="with.fess" value="true" />
    							<property name="opensearch.version" value="${opensearch.version}" />
    						</ant>
    						<ant antfile="${basedir}/plugin.xml" target="install.plugins">
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (darwin-386), const EVFILT_AIO ideal-int
    pkg syscall (darwin-386), const EVFILT_FS ideal-int
    pkg syscall (darwin-386), const EVFILT_MACHPORT ideal-int
    pkg syscall (darwin-386), const EVFILT_PROC ideal-int
    pkg syscall (darwin-386), const EVFILT_READ ideal-int
    pkg syscall (darwin-386), const EVFILT_SIGNAL ideal-int
    pkg syscall (darwin-386), const EVFILT_SYSCOUNT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  9. docs/fr/docs/tutorial/query-params-str-validations.md

    ```
    http://127.0.0.1:8000/items/?item-query=foobaritems
    ```
    
    Mais `item-query` n'est pas un nom de variable valide en Python.
    
    Le nom le plus proche serait `item_query`.
    
    Mais vous avez vraiment envie que ce soit exactement `item-query`...
    
    Pour cela vous pouvez déclarer un `alias`, et cet alias est ce qui sera utilisé pour trouver la valeur du paramètre :
    
    ```Python hl_lines="9"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:53:21 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  10. api/go1.4.txt

    pkg syscall (windows-386), type ProcessEntry32 struct
    pkg syscall (windows-386), type ProcessEntry32 struct, DefaultHeapID uintptr
    pkg syscall (windows-386), type ProcessEntry32 struct, ExeFile [260]uint16
    pkg syscall (windows-386), type ProcessEntry32 struct, Flags uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, ModuleID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top