Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 138 for ekvs (0.17 sec)

  1. internal/config/constants.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package config
    
    // Config value separator
    const (
    	ValueSeparator = ","
    )
    
    // Top level common ENVs
    const (
    	EnvAccessKey    = "MINIO_ACCESS_KEY"
    	EnvSecretKey    = "MINIO_SECRET_KEY"
    	EnvRootUser     = "MINIO_ROOT_USER"
    	EnvRootPassword = "MINIO_ROOT_PASSWORD"
    
    	// Legacy files
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. cni/pkg/plugin/kubernetes.go

    	b.WriteString(fmt.Sprintf("  Labels: %+v\n", pi.Labels))
    	b.WriteString(fmt.Sprintf("  Annotations: %+v\n", pi.Annotations))
    	b.WriteString(fmt.Sprintf("  Envs: %+v\n", pi.ProxyEnvironments))
    	b.WriteString(fmt.Sprintf("  ProxyConfig: %+v\n", pi.ProxyEnvironments))
    	return b.String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    		"If disabled, Gateway API gateways will ignore workloadSelector policies, only"+
    			"applying policies that select the gateway with a targetRef.").Get()
    
    	// Useful for IPv6-only EKS clusters. See https://aws.github.io/aws-eks-best-practices/networking/ipv6/ why it assigns an additional IPv4 NAT address.
    	// Also see https://github.com/istio/istio/issues/46719 why this flag is required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return nil, cleanupAction, err
    	}
    
    	// set environment variables
    	envs := make([]*runtimeapi.KeyValue, len(opts.Envs))
    	for idx := range opts.Envs {
    		e := opts.Envs[idx]
    		envs[idx] = &runtimeapi.KeyValue{
    			Key:   e.Name,
    			Value: e.Value,
    		}
    	}
    	config.Envs = envs
    
    	return config, cleanupAction, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. cmd/etcd.go

    	if err != nil {
    		etcdLogOnceIf(ctx, err, "etcd-retrieve-keys")
    		return nil, etcdErrToErr(err, client.Endpoints())
    	}
    	if resp.Count == 0 {
    		return nil, errConfigNotFound
    	}
    	for _, ev := range resp.Kvs {
    		if string(ev.Key) == key {
    			return ev.Value, nil
    		}
    	}
    	return nil, errConfigNotFound
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    		// Sleep in one millisecond increments until we have a reliable time.
    		timeSleep(1_000_000)
    	}
    	return r
    }
    
    var envs []string
    var argslice []string
    
    //go:linkname syscall_runtime_envs syscall.runtime_envs
    func syscall_runtime_envs() []string { return append([]string{}, envs...) }
    
    //go:linkname syscall_Getpagesize syscall.Getpagesize
    func syscall_Getpagesize() int { return int(physPageSize) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/runtime/runtime1.go

    	// problems.
    	n := int32(0)
    	for argv_index(argv, argc+1+n) != nil {
    		n++
    	}
    
    	envs = make([]string, n)
    	for i := int32(0); i < n; i++ {
    		envs[i] = gostring(argv_index(argv, argc+1+i))
    	}
    }
    
    func environ() []string {
    	return envs
    }
    
    // TODO: These should be locals in testAtomic64, but we don't 8-byte
    // align stack variables on 386.
    var test_z64, test_x64 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/types.go

    	UpdateAllocatedDevices()
    }
    
    // DeviceRunContainerOptions contains the combined container runtime settings to consume its allocated devices.
    type DeviceRunContainerOptions struct {
    	// The environment variables list.
    	Envs []kubecontainer.EnvVar
    	// The mounts for the container.
    	Mounts []kubecontainer.Mount
    	// The host devices mapped into the container.
    	Devices []kubecontainer.DeviceInfo
    	// The Annotations for the container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/test.sh"
    source "${KUBE_ROOT}/test/cmd/legacy-script.sh"
    
    # setup envs for TokenRequest required flags
    SERVICE_ACCOUNT_LOOKUP=${SERVICE_ACCOUNT_LOOKUP:-true}
    SERVICE_ACCOUNT_KEY=${SERVICE_ACCOUNT_KEY:-/tmp/kube-serviceaccount.key}
    # Generate ServiceAccount key if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    			}
    		})
    	}
    }
    
    func podWithEnv(envCount int) *corev1.Pod {
    	envs := []corev1.EnvVar{}
    	for i := 0; i < envCount; i++ {
    		envs = append(envs, corev1.EnvVar{
    			Name:  fmt.Sprintf("something-%d", i),
    			Value: "blah",
    		})
    	}
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top