Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,521 for environmental (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.2.md

      * “kubectl run” now produces Deployments (instead of ReplicationControllers) and
    Jobs (instead of Pods) by default.
      * Pods can now consume Secret data in environment variables and inject those
    environment variables into a container’s command-line args.
      * Stable version of Heapster which scales up to 1000 nodes: more metrics, reduced
    latency, reduced cpu/memory consumption (~4mb per monitored node).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Let's say you have different deployment settings depending on the environment: local development (the default), a test environment, and production.
    To add profile-like behavior, you first create build scripts for each environment in the project root: `profile-default.gradle`, `profile-test.gradle`, and `profile-prod.gradle`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            return super.propertiesFile(propertiesFile)
        }
    
        override fun getSystemProperties(): Environment.Properties =
            TrackingProperties(System.getProperties().uncheckedCast()) { prefix, snapshot ->
                listener.systemPropertiesPrefixedBy(prefix, snapshot)
            }
    
        override fun getVariables(): Environment.Properties =
            TrackingProperties(System.getenv()) { prefix, snapshot ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/environment.go

    // EnvironmentFactory creates an Environment.
    type EnvironmentFactory func(ctx Context) (Environment, error)
    
    var _ EnvironmentFactory = NilEnvironmentFactory
    
    // NilEnvironmentFactory is an EnvironmentFactory that returns nil.
    func NilEnvironmentFactory(Context) (Environment, error) {
    	return nil, nil
    }
    
    // Environment is the ambient environment that the test runs in.
    type Environment interface {
    	Resource
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/Environment.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Map;
    
    /**
     * Provides access to the environment in a configuration cache friendly way.
     *
     * Access to resources will be tracked when storing to the configuration cache.
     */
    @ServiceScope(Scope.Build.class)
    public interface Environment {
    
        /**
         * Reads the given Java properties file if it exists.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

    class NMToolFixture {
        private final List<String> environments
    
        private NMToolFixture(List<String> environments) {
            this.environments = environments
        }
        
        static NMToolFixture of(List<String> environments) {
            return new NMToolFixture(environments)
        }
    
        private findExe(String exe) {
            // *nix OS correctly handle search inside the process's PATH environment variable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

        <class>
          <name>Profile</name>
          <superClass>ModelBase</superClass>
          <version>4.0.0+</version>
          <description>Modifications to the build process which is activated based on environmental
            parameters or command line arguments.</description>
          <fields>
            <field>
              <name>id</name>
              <required>true</required>
              <version>4.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top