Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Environ (0.2 sec)

  1. configure.py

          environ_cp.get('LD_LIBRARY_PATH') != '1'):
        write_action_env_to_bazelrc('LD_LIBRARY_PATH',
                                    environ_cp.get('LD_LIBRARY_PATH'))
    
      if (environ_cp.get('TF_NEED_ROCM') == '1' and environ_cp.get('ROCM_PATH')):
        write_action_env_to_bazelrc('ROCM_PATH', environ_cp.get('ROCM_PATH'))
    
      if (environ_cp.get('TF_NEED_ROCM') == '1' and environ_cp.get('HIP_PLATFORM')):
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/api/main_test.go

    // the given context.
    func listEnv(c *build.Context) []string {
    	if c == nil {
    		return os.Environ()
    	}
    
    	environ := append(os.Environ(),
    		"GOOS="+c.GOOS,
    		"GOARCH="+c.GOARCH)
    	if c.CgoEnabled {
    		environ = append(environ, "CGO_ENABLED=1")
    	} else {
    		environ = append(environ, "CGO_ENABLED=0")
    	}
    	return environ
    }
    
    type apiPackage struct {
    	*types.Package
    	Files []*ast.File
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  3. docs/fr/docs/index.md

    * **Rapide à coder** : Augmente la vitesse de développement des fonctionnalités d'environ 200 % à 300 %. *
    * **Moins de bugs** : Réduit d'environ 40 % les erreurs induites par le développeur. *
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  4. cmd/server-main.go

    		fmt.Println("Currently set environment settings:")
    		ks := []string{
    			config.EnvAccessKey,
    			config.EnvSecretKey,
    			config.EnvRootUser,
    			config.EnvRootPassword,
    		}
    		for _, v := range os.Environ() {
    			// Do not print sensitive creds in debug.
    			if slices.Contains(ks, strings.Split(v, "=")[0]) {
    				continue
    			}
    			fmt.Println(v)
    		}
    		fmt.Println("======")
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 33K bytes
    - Viewed (1)
  5. 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)
  6. 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)
Back to top