Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,561 for kenv (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS___MAC_SET_FD             = 388 // { int __mac_set_fd(int fd, struct mac *mac_p); }
    	SYS___MAC_SET_FILE           = 389 // { int __mac_set_file(const char *path_p, struct mac *mac_p); }
    	SYS_KENV                     = 390 // { int kenv(int what, const char *name, char *value, int len); }
    	SYS_LCHFLAGS                 = 391 // { int lchflags(const char *path, u_long flags); }
    	SYS_UUIDGEN                  = 392 // { int uuidgen(struct uuid *store, int count); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env.go

    			env[i].Value, env[i].Changed = cfg.EnvOrAndChanged("GOTOOLCHAIN", "")
    		case "GODEBUG":
    			env[i].Changed = env[i].Value != ""
    		}
    	}
    
    	if work.GccgoBin != "" {
    		env = append(env, cfg.EnvVar{Name: "GCCGO", Value: work.GccgoBin, Changed: true})
    	} else {
    		env = append(env, cfg.EnvVar{Name: "GCCGO", Value: work.GccgoName})
    	}
    
    	goarch, val, changed := cfg.GetArchEnv()
    	if goarch != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/util/env/env.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package env
    
    import (
    	"os"
    	"strconv"
    )
    
    // GetEnvAsStringOrFallback returns the env variable for the given key
    // and falls back to the given defaultValue if not set
    func GetEnvAsStringOrFallback(key, defaultValue string) string {
    	if v := os.Getenv(key); v != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 27 15:25:19 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/env.go

    func GetProxyEnvVars() []kubeadmapi.EnvVar {
    	envs := []kubeadmapi.EnvVar{}
    	for _, env := range os.Environ() {
    		pos := strings.Index(env, "=")
    		if pos == -1 {
    			// malformed environment variable, skip it.
    			continue
    		}
    		name := env[:pos]
    		value := env[pos+1:]
    		if strings.HasSuffix(strings.ToLower(name), "_proxy") && value != "" {
    			envVar := kubeadmapi.EnvVar{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 09:09:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. go.env

    # This file contains the initial defaults for go command configuration.
    # Values set by 'go env -w' and written to the user's go/env file override these.
    # The environment overrides everything else.
    
    # Use the Go module mirror and checksum database by default.
    # See https://proxy.golang.org for details.
    GOPROXY=https://proxy.golang.org,direct
    GOSUMDB=sum.golang.org
    
    # Automatically download newer toolchains as directed by go.mod files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 505 bytes
    - Viewed (0)
  6. tensorflow/c/env.cc

      return ::tensorflow::Env::Default()->NowNanos();
    }
    
    // Returns the number of microseconds since the Unix epoch.
    TF_CAPI_EXPORT extern uint64_t TF_NowMicros(void) {
      return ::tensorflow::Env::Default()->NowMicros();
    }
    
    // Returns the number of seconds since the Unix epoch.
    TF_CAPI_EXPORT extern uint64_t TF_NowSeconds(void) {
      return ::tensorflow::Env::Default()->NowSeconds();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. pkg/ctrlz/topics/env.go

    	return "Environment Variables"
    }
    
    func (envTopic) Prefix() string {
    	return "env"
    }
    
    type envVar struct {
    	Name  string `json:"name"`
    	Value string `json:"value"`
    }
    
    func getVars() []envVar {
    	env := os.Environ()
    	sort.Strings(env)
    
    	result := []envVar{}
    	for _, v := range env {
    		eq := strings.Index(v, "=")
    		name := v[:eq] //nolint
    		value := v[eq+1:]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/c/env.h

    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_file_statistics.h"
    #include "tensorflow/c/tf_status.h"
    
    // --------------------------------------------------------------------------
    // C API for tensorflow::Env.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef struct TF_WritableFileHandle TF_WritableFileHandle;
    typedef struct TF_StringStream TF_StringStream;
    typedef struct TF_Thread TF_Thread;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/env.go

    Bryan C. Mills <******@****.***> 1651693484 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:40:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. test/env.go

    Austin Clements <******@****.***> 1683557265 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:34:59 UTC 2023
    - 549 bytes
    - Viewed (0)
Back to top