Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UNSUPPORTED_ENVIRONMENT (0.2 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jna/UnsupportedEnvironment.java

            return EnvironmentModificationResult.UNSUPPORTED_ENVIRONMENT;
        }
    
        @Override
        public void removeEnvironmentVariable(String name) throws NativeIntegrationException {
            throw notSupported();
        }
    
        @Override
        public EnvironmentModificationResult maybeRemoveEnvironmentVariable(String name) {
            return EnvironmentModificationResult.UNSUPPORTED_ENVIRONMENT;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/EnvironmentModificationResult.java

     */
    
    package org.gradle.internal.nativeintegration;
    
    /**
     * Encapsulates what happened when we tried to modify the environment.
     */
    public enum EnvironmentModificationResult {
        SUCCESS(null),
        UNSUPPORTED_ENVIRONMENT("There is no native integration with this operating environment.");
    
        private final String reason;
    
        EnvironmentModificationResult(String reason) {
            this.reason = reason;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top