Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 140 for envvars (0.22 sec)

  1. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    #include "tensorflow/compiler/mlir/tfr/ir/tfr_ops.h"
    #include "tensorflow/compiler/mlir/tfr/passes/passes.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/stringpiece.h"
    #include "tensorflow/core/util/env_var.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tfr {
    
    const char* const kTFRLibEnv = "TF_MLIR_TFR_LIB_DIR";
    
    absl::StatusOr<std::unique_ptr<TFRDecomposeContext>> TFRDecomposeContext::Get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    				EnvFrom: []api.EnvFromSource{{
    					SecretRef: &api.SecretEnvSource{
    						LocalObjectReference: api.LocalObjectReference{
    							Name: "Spec.Containers[*].EnvFrom[*].SecretRef"}}}},
    				Env: []api.EnvVar{{
    					ValueFrom: &api.EnvVarSource{
    						SecretKeyRef: &api.SecretKeySelector{
    							LocalObjectReference: api.LocalObjectReference{
    								Name: "Spec.Containers[*].Env[*].ValueFrom.SecretKeyRef"}}}}}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    	errorCases := []struct {
    		name          string
    		envs          []core.EnvVar
    		expectedError string
    	}{{
    		name:          "illegal character",
    		envs:          []core.EnvVar{{Name: "=abc"}},
    		expectedError: `[0].name: Invalid value: "=abc": ` + relaxedEnvVarNameFmtErrMsg,
    	}, {
    		name:          "zero-length name",
    		envs:          []core.EnvVar{{Name: ""}},
    		expectedError: "[0].name: Required value",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/extensions_test.go

    							WasmResourceVersionEnv: "dummy-resource-version",
    						},
    					},
    				},
    			},
    		},
    		{
    			desc: "Build VMConfig on top of a base VMConfig",
    			vm: &extensions.VmConfig{
    				Env: []*extensions.EnvVar{
    					{
    						Name:      "POD_NAME",
    						ValueFrom: extensions.EnvValueSource_HOST,
    					},
    					{
    						Name:  "ENV1",
    						Value: "VAL1",
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher.go

    	fetchOpts := make([]remote.Option, 0, 2)
    	// TODO(mathetake): have "Anonymous" option?
    	if opt.useDefaultKeyChain() {
    		// Note that default key chain reads the docker config from DOCKER_CONFIG
    		// so must set the envvar when reaching this branch is expected.
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(authn.DefaultKeychain))
    	} else {
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(&wasmKeyChain{data: opt.PullSecret}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. pkg/controller/job/indexed_job_utils.go

    	} else {
    		fieldPath = fmt.Sprintf("metadata.annotations['%s']", batch.JobCompletionIndexAnnotation)
    	}
    	container.Env = append(container.Env, v1.EnvVar{
    		Name: completionIndexEnvName,
    		ValueFrom: &v1.EnvVarSource{
    			FieldRef: &v1.ObjectFieldSelector{
    				FieldPath: fieldPath,
    			},
    		},
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EnvVar)(nil), (*core.EnvVar)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EnvVar_To_core_EnvVar(a.(*v1.EnvVar), b.(*core.EnvVar), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.EnvVar)(nil), (*v1.EnvVar)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/manifests.go

    // NB. this method holds the information about how kubeadm creates static pod manifests.
    func GetStaticPodSpecs(cfg *kubeadmapi.ClusterConfiguration, endpoint *kubeadmapi.APIEndpoint, proxyEnvs []kubeadmapi.EnvVar) map[string]v1.Pod {
    	// Get the required hostpath mounts
    	mounts := getHostPathVolumesForTheControlPlane(cfg)
    	if proxyEnvs == nil {
    		proxyEnvs = kubeadmutil.GetProxyEnvVars()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/pod_devices.go

    				}
    				continue
    			}
    			klog.V(4).InfoS("Add env", "envKey", k, "envValue", v)
    			envsMap[k] = v
    			opts.Envs = append(opts.Envs, kubecontainer.EnvVar{Name: k, Value: v})
    		}
    
    		// Updates RunContainerOptions.Devices.
    		for _, dev := range resp.Devices {
    			if d, ok := devsMap[dev.ContainerPath]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/cmd/internal/dwarf/dwarf.go

    	// Indices of child inlines within Calls array above.
    	Children []int
    
    	// entries in this list are PAUTO's created by the inliner to
    	// capture the promoted formals and locals of the inlined callee.
    	InlVars []*Var
    
    	// PC ranges for this inlined call.
    	Ranges []Range
    
    	// Root call (not a child of some other call).
    	Root bool
    }
    
    // A Context specifies how to add data to a Sym.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top