All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mlflow.utils.EnvironmentUtils Maven / Gradle / Ivy

package org.mlflow.utils;

/** Utilities for reading from / writing to the system enviroment */
public class EnvironmentUtils {
  public static int getIntegerValue(String varName, int defaultValue) {
    String rawValue = System.getenv(varName);
    if (rawValue == null) {
      return defaultValue;
    } else {
      return Integer.valueOf(rawValue);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy