Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,431 for kenv (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. hack/testdata/pod-with-api-env.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: env-test-pod
    spec:
      containers:
        - name: test-container
          image: registry.k8s.io/busybox
          command: [ "/bin/sh", "-c", "env" ]
          env:
            - name: TEST_CMD_1
              valueFrom:
                secretKeyRef:
                  name: test-secret
                  key: key-1
            - name: TEST_CMD_2
              valueFrom:
                configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 593 bytes
    - Viewed (0)
  8. tools/packaging/common/sidecar.env

    Xiaoyang Liu <******@****.***> 1654020162 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. buildscripts/upgrade-tests/minio.env

    Harshavardhana <******@****.***> 1637520090 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Nov 21 18:41:30 UTC 2021
    - 74 bytes
    - Viewed (0)
  10. src/os/env.go

    cui fliter <******@****.***> 1699009739 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top