Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 621 for kenv (0.04 sec)

  1. docs/en/docs/advanced/settings.md

    !!! tip
        For this to work, you need to `pip install python-dotenv`.
    
    ### The `.env` file
    
    You could have a `.env` file with:
    
    ```bash
    ADMIN_EMAIL="******@****.***"
    APP_NAME="ChimichangApp"
    ```
    
    ### Read settings from `.env`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/api/pod/warnings_test.go

    				{Name: "init1", Env: env, Resources: api.ResourceRequirements{Requests: resources, Limits: resources}},
    				{Name: "init2", Env: env, Resources: api.ResourceRequirements{Requests: resources, Limits: resources}},
    			},
    			Containers: []api.Container{
    				{Name: "container1", Env: env, Resources: api.ResourceRequirements{Requests: resources, Limits: resources}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/runtime/crash_test.go

    	}
    
    	start := time.Now()
    
    	cmd := testenv.CleanCmdEnv(testenv.Command(t, exe, name))
    	cmd.Env = append(cmd.Env, env...)
    	if testing.Short() {
    		cmd.Env = append(cmd.Env, "RUNTIME_TEST_SHORT=1")
    	}
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Logf("%v (%v): ok", cmd, time.Since(start))
    	} else {
    		if _, ok := err.(*exec.ExitError); ok {
    			t.Logf("%v: %v", cmd, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. src/cmd/link/elf_test.go

    	"text/template"
    )
    
    func getCCAndCCFLAGS(t *testing.T, env []string) (string, []string) {
    	goTool := testenv.GoToolPath(t)
    	cmd := testenv.Command(t, goTool, "env", "CC")
    	cmd.Env = env
    	ccb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cc := strings.TrimSpace(string(ccb))
    
    	cmd = testenv.Command(t, goTool, "env", "GOGCCFLAGS")
    	cmd.Env = env
    	cflagsb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_executable_persistor.h

        const XlaSerializedCacheKey& key) const {
      Env* env = Env::Default();
      const std::string file_path = GetFilePath(key);
      if (!env->FileExists(file_path).ok()) {
        return absl::StatusOr<std::optional<XlaSerializedCacheEntry>>(std::nullopt);
      }
    
      XlaSerializedCacheEntry entry;
      TF_RETURN_IF_ERROR(ReadTextOrBinaryProto(env, file_path, &entry));
      return std::optional<XlaSerializedCacheEntry>(entry);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/cmd/go/script_test.go

    		env = append(env, "TESTGOVCS=panic")
    	}
    
    	if os.Getenv("CGO_ENABLED") != "" || runtime.GOOS != goHostOS || runtime.GOARCH != goHostArch {
    		// If the actual CGO_ENABLED might not match the cmd/go default, set it
    		// explicitly in the environment. Otherwise, leave it unset so that we also
    		// cover the default behaviors.
    		env = append(env, "CGO_ENABLED="+cgoEnabled)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. pkg/api/pod/util.go

    			podEnvVarNames.Insert(env.Prefix)
    		}
    	}
    
    	for _, c := range podSpec.InitContainers {
    		for _, env := range c.Env {
    			podEnvVarNames.Insert(env.Name)
    		}
    
    		for _, env := range c.EnvFrom {
    			podEnvVarNames.Insert(env.Prefix)
    		}
    	}
    
    	for _, c := range podSpec.EphemeralContainers {
    		for _, env := range c.Env {
    			podEnvVarNames.Insert(env.Name)
    		}
    
    		for _, env := range c.EnvFrom {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    func (e *EnvSet) NewExpressionsEnv() *cel.Env {
    	return e.newExpressions
    }
    
    // StoredExpressionsEnv returns the StoredExpressions environment Type for this EnvSet.
    // See StoredExpressions for details.
    func (e *EnvSet) StoredExpressionsEnv() *cel.Env {
    	return e.storedExpressions
    }
    
    // Env returns the CEL environment for the given Type.
    func (e *EnvSet) Env(envType Type) (*cel.Env, error) {
    	switch envType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta2/zz_generated.defaults.go

    		v1.SetDefaults_Container(a)
    		for j := range a.Ports {
    			b := &a.Ports[j]
    			if b.Protocol == "" {
    				b.Protocol = "TCP"
    			}
    		}
    		for j := range a.Env {
    			b := &a.Env[j]
    			if b.ValueFrom != nil {
    				if b.ValueFrom.FieldRef != nil {
    					v1.SetDefaults_ObjectFieldSelector(b.ValueFrom.FieldRef)
    				}
    			}
    		}
    		v1.SetDefaults_ResourceList(&a.Resources.Limits)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 40K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

                                    <jdkHome>${env.JDK16}</jdkHome>
                                    </configuration>
                                    </toolchain>
                                    <toolchain>
                                    <type>jdk</type>
                                    <configuration>
                                    <jdkHome>${env.JDK17}</jdkHome>
                                    </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top