Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for NativeIntegrationException (0.47 sec)

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

     * limitations under the License.
     */
    package org.gradle.internal.nativeintegration;
    
    public class NativeIntegrationException extends RuntimeException {
        public NativeIntegrationException(String message) {
            super(message);
        }
    
        public NativeIntegrationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 930 bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

         * Returns the working directory of the current process.
         *
         * @throws NativeIntegrationException If the process directory is not available.
         */
        File getProcessDir() throws NativeIntegrationException;
    
        /**
         * Sets the process working directory.
         *
         * @param processDir The directory.
         * @throws NativeIntegrationException If process directory cannot be set.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/processenvironment/AbstractProcessEnvironment.java

    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import org.gradle.internal.nativeintegration.EnvironmentModificationResult;
    import org.gradle.internal.nativeintegration.NativeIntegrationException;
    import org.gradle.internal.nativeintegration.ProcessEnvironment;
    import org.gradle.internal.nativeintegration.ReflectiveEnvironment;
    
    import java.io.File;
    import java.util.List;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jna/UnsupportedEnvironment.java

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

                @SuppressWarnings("unchecked")
                Map<String, String> result = (Map<String, String>)caseinsensitive.get(null);
                return result;
            } catch (Exception e) {
                throw new NativeIntegrationException("Unable to get mutable windows case insensitive environment map", e);
            }
        }
    
        private Map<String, String> getEnv() {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/NativeOsMemoryInfo.java

    import net.rubygrapefruit.platform.NativeException;
    import net.rubygrapefruit.platform.memory.Memory;
    import net.rubygrapefruit.platform.memory.MemoryInfo;
    import org.gradle.internal.nativeintegration.NativeIntegrationException;
    import org.gradle.internal.nativeintegration.services.NativeServices;
    
    public class NativeOsMemoryInfo implements OsMemoryInfo {
    
        @Override
        public OsMemoryStatus getOsSnapshot() {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/WindowsOsMemoryInfo.java

    import net.rubygrapefruit.platform.memory.MemoryInfo;
    import net.rubygrapefruit.platform.memory.WindowsMemoryInfo;
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.nativeintegration.NativeIntegrationException;
    import org.gradle.internal.nativeintegration.services.NativeServices;
    
    @NonNullApi
    public class WindowsOsMemoryInfo implements OsMemoryInfo {
    
        @Override
        public OsMemoryStatus getOsSnapshot() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiBootPathConfigurer.java

     */
    
    package org.gradle.internal.nativeintegration.jansi;
    
    import org.apache.commons.io.IOUtils;
    import org.gradle.internal.IoActions;
    import org.gradle.internal.nativeintegration.NativeIntegrationException;
    
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    
    public class JansiBootPathConfigurer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/NativeIntegrationUnavailableException.java

     * Thrown when the native integration for the current platform is not available for some reason (eg unsupported operating system, cannot load native library, etc).
     */
    public class NativeIntegrationUnavailableException extends NativeIntegrationException {
        public NativeIntegrationUnavailableException(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1023 bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.nativeintegration.NativeIntegrationException> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (NativeIntegrationException.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top