Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 435 for envdir (0.1 sec)

  1. src/runtime/env_plan9.go

    //
    //go:nosplit
    func goenvs() {
    	buf := make([]byte, envBufSize)
    	copy(buf, envDir)
    	dirfd := open(&buf[0], _OREAD, 0)
    	if dirfd < 0 {
    		return
    	}
    	defer closefd(dirfd)
    	dofiles(dirfd, func(name []byte) {
    		name = append(name, 0)
    		buf = buf[:len(envDir)]
    		copy(buf, envDir)
    		buf = append(buf, name...)
    		fd := open(&buf[0], _OREAD, 0)
    		if fd < 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_write.txt

    [GOOS:openbsd] stdout $HOME/.config/go/env
    [GOOS:plan9] stdout $HOME/plan9home/lib/go/env
    [GOOS:windows] stdout $HOME\\windowsappdata\\go\\env
    
    # Now override it to something writable.
    env GOENV=$WORK/envdir/go/env
    go env GOENV
    stdout envdir[\\/]go[\\/]env
    
    # go env shows all variables
    go env
    stdout GOARCH=
    stdout GOOS=
    stdout GOROOT=
    
    # go env ignores invalid flag in GOFLAGS environment variable
    env GOFLAGS='=true'
    go env
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/envvar.go

    // with apply.
    type EnvVarApplyConfiguration struct {
    	Name      *string                         `json:"name,omitempty"`
    	Value     *string                         `json:"value,omitempty"`
    	ValueFrom *EnvVarSourceApplyConfiguration `json:"valueFrom,omitempty"`
    }
    
    // EnvVarApplyConfiguration constructs an declarative configuration of the EnvVar type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. cmd/xl-storage-errors.go

    	return errors.Is(err, syscall.EIO)
    }
    
    // Check if the given error corresponds to EISDIR (is a directory).
    func isSysErrIsDir(err error) bool {
    	return errors.Is(err, syscall.EISDIR)
    }
    
    // Check if the given error corresponds to ENOTDIR (is not a directory).
    func isSysErrNotDir(err error) bool {
    	return errors.Is(err, syscall.ENOTDIR)
    }
    
    // Check if the given error corresponds to the ENAMETOOLONG (name too long).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/syscall/tables_wasip1.go

    	EIDRM           Errno = 24
    	EILSEQ          Errno = 25
    	EINPROGRESS     Errno = 26
    	EINTR           Errno = 27
    	EINVAL          Errno = 28
    	EIO             Errno = 29
    	EISCONN         Errno = 30
    	EISDIR          Errno = 31
    	ELOOP           Errno = 32
    	EMFILE          Errno = 33
    	EMLINK          Errno = 34
    	EMSGSIZE        Errno = 35
    	EMULTIHOP       Errno = 36
    	ENAMETOOLONG    Errno = 37
    	ENETDOWN        Errno = 38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/syscall/tables_js.go

    	"EACCES":          EACCES,
    	"EFAULT":          EFAULT,
    	"EBUSY":           EBUSY,
    	"EEXIST":          EEXIST,
    	"EXDEV":           EXDEV,
    	"ENODEV":          ENODEV,
    	"ENOTDIR":         ENOTDIR,
    	"EISDIR":          EISDIR,
    	"EINVAL":          EINVAL,
    	"ENFILE":          ENFILE,
    	"EMFILE":          EMFILE,
    	"ENOTTY":          ENOTTY,
    	"EFBIG":           EFBIG,
    	"ENOSPC":          ENOSPC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  7. internal/config/config.go

    		envVars := candidates.ToSlice()
    		for _, envVar := range envVars {
    			for _, param := range validKeys {
    				pEnvName := getEnvVarName(subSys, Default, param) + Default
    				if len(envVar) > len(pEnvName) && strings.HasPrefix(envVar, pEnvName) {
    					// This envVar is valid - it has a
    					// non-empty target.
    					candidates.Remove(envVar)
    				}
    			}
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. src/os/removeall_at.go

    	})
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// EISDIR means that we have a directory, and we need to
    	// remove its contents.
    	// EPERM or EACCES means that we don't have write permission on
    	// the parent directory, but this entry might still be a directory
    	// whose contents need to be removed.
    	// Otherwise just return the error.
    	if err != syscall.EISDIR && err != syscall.EPERM && err != syscall.EACCES {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/syscall/zerrors_windows.go

    // mkerrors_windows.sh -m32
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    // Go names for Windows errors.
    const (
    	ENOENT  Errno = ERROR_FILE_NOT_FOUND
    	ENOTDIR Errno = ERROR_PATH_NOT_FOUND
    )
    
    // Windows reserves errors >= 1<<29 for application use.
    const APPLICATION_ERROR = 1 << 29
    
    // Invented values to support what package os and others expects.
    const (
    	E2BIG Errno = APPLICATION_ERROR + iota
    	EACCES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  10. cmd/server-main.go

    		EnvVar: "MINIO_LISTENERS",
    		Hidden: true,
    	},
    	cli.StringFlag{
    		Name:   "console-address",
    		Usage:  "bind to a specific ADDRESS:PORT for embedded Console UI, ADDRESS can be an IP or hostname",
    		EnvVar: "MINIO_CONSOLE_ADDRESS",
    	},
    	cli.DurationFlag{
    		Name:   "shutdown-timeout",
    		Value:  xhttp.DefaultShutdownTimeout,
    		Usage:  "shutdown timeout to gracefully shutdown server",
    		EnvVar: "MINIO_SHUTDOWN_TIMEOUT",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (3)
Back to top