Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for environmental (0.23 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Removes `ENABLE_CLIENT_GO_WATCH_LIST_ALPHA` environmental variable from the reflector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // will be used as the certificates for workloads.
      // The default value is "" and when caName="", the CA will be configured by other
      // mechanisms (e.g., environmental variable CA_PROVIDER).
      string caName = 65;
    
      // TODO: remove this?
      // No longer used.
      google.protobuf.BoolValue autoscalingv2API = 66;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    	// IN_QEMU=1 indicates that the tests are running in QEMU. See issue 9605.
    	if os.Getenv("IN_QEMU") == "1" {
    		t.Skip("ignore the failure in QEMU; see golang.org/issue/9605")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    scripts could be used for arbitrary code execution when an attacker is able to change environment variables.
    
    You can use the latest version of Gradle to generate a `gradlew` script and use it to execute an older version of Gradle.
    
    This should be transparent for most users; however, there may be changes for Gradle builds that rely on the environment variables `JAVA_OPTS` or `GRADLE_OPTS` to pass parameters with complicated quote escaping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   2. You cannot use ASSERT_* directly in a constructor or
    //      destructor.
    class Environment {
     public:
      // The d'tor is virtual as we need to subclass Environment.
      virtual ~Environment() {}
    
      // Override this to define how to set up the environment.
      virtual void SetUp() {}
    
      // Override this to define how to tear down the environment.
      virtual void TearDown() {}
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   2. You cannot use ASSERT_* directly in a constructor or
    //      destructor.
    class Environment {
     public:
      // The d'tor is virtual as we need to subclass Environment.
      virtual ~Environment() {}
    
      // Override this to define how to set up the environment.
      virtual void SetUp() {}
    
      // Override this to define how to tear down the environment.
      virtual void TearDown() {}
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation.go

    // nonStrictStatelessCELCompiler is a cel Compiler that does not enforce strict cost enforcement.
    var strictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true))
    var nonStrictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), false))
    
    func createCompiler(allowComposition, strictCost bool) plugincel.Compiler {
    	if !allowComposition {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. configure.py

      """Set boolean action_env variable.
    
      Ask user if query_item will be enabled. Default is used if no input is given.
      Set environment variable and write to .bazelrc.
    
      Args:
        environ_cp: copy of the os.environ.
        var_name: string for name of environment variable, e.g. "TF_NEED_CUDA".
        query_item: string for feature related to the variable, e.g. "CUDA for
          Nvidia GPUs".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:secrets:configuring_encryption_key]]
    === Providing an encryption key via `GRADLE_ENCRYPTION_KEY` environment variable
    
    By default, Gradle automatically generates and manages the encryption key as a Java keystore stored under the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>` directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				invalidError("undeclared reference to 'fakeFunction'"),
    			},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			env, err := environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true).Extend(
    				environment.VersionedOptions{
    					IntroducedVersion: version.MajorMinor(1, 999),
    					EnvOptions:        []celgo.EnvOption{celgo.Lib(&fakeLib{})},
    				})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top