Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,521 for environmental (0.3 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

    import org.gradle.api.attributes.Attribute;
    
    /**
     * Represents the target JVM environment. Typically, a standard JVM or Android.
     * This attribute can be used by libraries to indicate that a certain variant is better suited for
     * a certain JVM environment. It does however NOT strictly require environments to match, as the
     * general assumption is that Java libraries can also run on environments they are not optimized for.
     *
     * @since 7.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	))
    }
    
    func mustBuildEnvs(baseEnv *environment.EnvSet) map[string]*environment.EnvSet {
    	buildEnvSet := func(envOpts []cel.EnvOption, declTypes []*apiservercel.DeclType) *environment.EnvSet {
    		env, err := baseEnv.Extend(environment.VersionedOptions{
    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions:        envOpts,
    			DeclTypes:         declTypes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. manifests/charts/README.md

    The install is organized in 'environments' - each environment consists of a set of components
    in different namespaces that are configured to work together. Regardless of 'environment',
    workloads can talk with each other and obey the Istio configuration resources, but each environment
    can use different Istio versions and different configuration defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

            public final Map<String, String> environments = new HashMap<>();
            public final List<String> args = new ArrayList<>();
            public File executable;
    
            @Override
            public CompilerExecSpec environment(String key, String value) {
                environments.put(key, value);
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. releasenotes/notes/31797.yaml

    apiVersion: release-notes/v2
    kind: enhancement
    area: environments
    issue:
    - 31732
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 08 16:31:46 UTC 2021
    - 181 bytes
    - Viewed (0)
  6. docs/orchestration/README.md

    about just retrofitting monolithic applications onto modern container based compute environment. A cloud-native application is portable and resilient by design, and can scale horizontally by simply replicating. Modern orchestration platforms like Kubernetes, DC/OS make replicating and managing containers in huge clusters easier than ever.
    
    While containers provide isolated application execution environment, orchestration platforms allow seamless scaling by helping replicate and manage containers....
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

       ([#123001](https://github.com/kubernetes/kubernetes/pull/123001), [@tkashem](https://github.com/tkashem))
    - Introduced a feature gate mechanism to `client-go`. Depending on the actual implementation, users can control features via environmental variables or command line options. ([#122555](https://github.com/kubernetes/kubernetes/pull/122555), [@p0lyn0mial](https://github.com/p0lyn0mial))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. tests/integration/README.md

    Finally, you'll need to provide an environment-agnostic constructor for your component:
    
    ```go
    package mycomponent
    
    func New(ctx resource.Context) (i Instance, err error){
        err = resource.UnsupportedEnvironment(ctx.Environment())
        ctx.Environment().Case(environment.Native, func() {
            i, err = newNative(ctx)
        })
        ctx.Environment().Case(environment.Kube, func() {
            i, err = newKube(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/fixtures/IdeCommandLineUtil.groovy

                    if (expected[key] != actual[key]) {
                        throw new GradleException(""\"
    Environment's \$key did not match!
    Expected: \${expected[key]}
    Actual: \${actual[key]}
    ""\")
                    }
                }
    
                rootProject {
                    def gradleEnvironment = file("gradle-environment")
                    tasks.matching { it.name == '$ideTaskName' }.all { ideTask ->
                        ideTask.doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/internal/osinfo/os_js.go

    	// combinations for the convenience of reading logs at build.golang.org
    	// and local development. It's not a goal to recognize all environments.
    	if v, ok := node(); ok {
    		return "Node.js " + v, nil
    	}
    	return "", fmt.Errorf("unrecognized environment")
    }
    
    func node() (version string, ok bool) {
    	// Try the https://nodejs.org/api/process.html#processversion API.
    	p := js.Global().Get("process")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top