Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Environ (0.34 sec)

  1. cmd/common-main.go

    		if (quote == '"' || quote == '\'') && val[len(val)-1] == quote {
    			val = val[1 : len(val)-1]
    		}
    	}
    
    	return envKV{
    		Key:   key,
    		Value: val,
    	}, nil
    }
    
    // Similar to os.Environ returns a copy of strings representing
    // the environment values from a file, in the form "key, value".
    // in a structured form.
    func minioEnvironFromFile(envConfigFile string) ([]envKV, error) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 35.5K bytes
    - Viewed (2)
  2. RELEASE.md

        1.  To switch tf.keras to use Keras 2 (tf-keras), set the environment
            variable TF_USE_LEGACY_KERAS=1 directly or in your python program by
            import os;os.environ["TF_USE_LEGACY_KERAS"]=1. Please note that this
            will set it for all packages in your Python runtime program
    
    *   1.  Change import of keras from tensorflow as follows
    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)
  3. api/go1.txt

    pkg os, func Chown(string, int, int) error
    pkg os, func Chtimes(string, time.Time, time.Time) error
    pkg os, func Clearenv()
    pkg os, func Create(string) (*File, error)
    pkg os, func Environ() []string
    pkg os, func Exit(int)
    pkg os, func Expand(string, func(string) string) string
    pkg os, func ExpandEnv(string) string
    pkg os, func FindProcess(int) (*Process, error)
    pkg os, func Getegid() int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top