Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 156 for envMap (0.11 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *EnvVar) DeepCopyInto(out *EnvVar) {
    	*out = *in
    	in.EnvVar.DeepCopyInto(&out.EnvVar)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar.
    func (in *EnvVar) DeepCopy() *EnvVar {
    	if in == nil {
    		return nil
    	}
    	out := new(EnvVar)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    listener/main_internal           0     ALL   Cluster: inbound-vip|8000|http|httpbin.default.svc.cluster.local
    listener/main_internal           0     ALL   Cluster: encap
    listener/main_internal           0     ALL   Cluster: encap
    listener/              0.0.0.0   15021 ALL   Inline Route: /healthz/ready*
    
    NAME                                                              VHOST NAME            DOMAINS     MATCH     VIRTUAL SERVICE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    			ns:                 "test1",
    			enableServiceLinks: &falseValue,
    			container:          &v1.Container{Env: []v1.EnvVar{}},
    			nilLister:          false,
    			staticPod:          false,
    			unsyncedServices:   true,
    			expectedEnvs:       []kubecontainer.EnvVar{},
    			expectedError:      true,
    		},
    		{
    			name:               "if services aren't synced, static pods should succeed", // if there is no service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            externalProcessStarted(command, consumer);
            return runtime.exec(command, envp);
        }
    
        public static Process exec(Runtime runtime, String[] command, String[] envp, String consumer) throws IOException {
            externalProcessStarted(command, consumer);
            return runtime.exec(command, envp);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_waypoint.go

    	// Creates "main_internal" cluster to route to the main internal listener.
    	// Creates "encap" cluster to route to the encap listener.
    	clusters = append(clusters, MainInternalCluster, EncapCluster)
    	// Creates per-VIP load balancing upstreams.
    	clusters = append(clusters, cb.buildWaypointInboundVIP(proxy, svcs)...)
    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/runtime/security_test.go

    	}
    }
    
    func TestSUID(t *testing.T) {
    	// This test is relatively simple, we build a test program which opens a
    	// file passed via the TEST_OUTPUT envvar, prints the value of the
    	// GOTRACEBACK envvar to stdout, and prints "hello" to stderr. We then chown
    	// the program to "nobody" and set u+s on it. We execute the program, only
    	// passing it two files, for stdin and stdout, and passing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/envcmd/env_test.go

    				t.Skipf("skipping %#q on Windows: contains unescapable character %q", s, c)
    			}
    		}
    
    		var b bytes.Buffer
    		if runtime.GOOS == "windows" {
    			b.WriteString("@echo off\n")
    		}
    		PrintEnv(&b, []cfg.EnvVar{{Name: "var", Value: s}}, false)
    		var want string
    		if runtime.GOOS == "windows" {
    			fmt.Fprintf(&b, "echo \"%%var%%\"\n")
    			want += "\"" + s + "\"\r\n"
    		} else {
    			fmt.Fprintf(&b, "printf '%%s\\n' \"$var\"\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/etcd/local_test.go

    	cfg := &kubeadmapi.ClusterConfiguration{
    		KubernetesVersion: "v1.7.0",
    		Etcd: kubeadmapi.Etcd{
    			Local: &kubeadmapi.LocalEtcd{
    				DataDir: "/var/lib/etcd",
    				ExtraEnvs: []kubeadmapi.EnvVar{
    					{
    						EnvVar: v1.EnvVar{Name: "Foo", Value: "Bar"},
    					},
    				},
    			},
    		},
    	}
    	endpoint := &kubeadmapi.APIEndpoint{}
    
    	// Executes GetEtcdPodSpec
    	spec := GetEtcdPodSpec(cfg, endpoint, "", []etcdutil.Member{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. plugin/pkg/admission/serviceaccount/admission_test.go

    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	pod2 := &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{
    				{
    					Name: "container-1",
    					Env: []api.EnvVar{
    						{
    							Name: "env-1",
    							ValueFrom: &api.EnvVarSource{
    								SecretKeyRef: &api.SecretKeySelector{
    									LocalObjectReference: api.LocalObjectReference{Name: "foo"},
    								},
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. pkg/api/pod/util.go

    	for _, env := range container.EnvFrom {
    		if env.SecretRef != nil {
    			if !visitor(env.SecretRef.Name) {
    				return false
    			}
    		}
    	}
    	for _, envVar := range container.Env {
    		if envVar.ValueFrom != nil && envVar.ValueFrom.SecretKeyRef != nil {
    			if !visitor(envVar.ValueFrom.SecretKeyRef.Name) {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top