Examples of ImageFormat


Examples of org.platformlayer.ops.images.ImageFormat

    String diskFormat = null;
    if (tags != null) {
      assert false; // This logic looks suspicious...
      for (Tag tag : tags.getTags()) {
        ImageFormat imageFormat = ImageFormat.fromTags(tags);
        diskFormat = mapToGlanceDiskFormat(imageFormat);
      }
    }

    String glanceBaseUrl;
View Full Code Here

Examples of org.platformlayer.ops.images.ImageFormat

        String tagValue = tag.getValue();

        boolean checked = false;

        if (ImageFormat.isImageFormatTag(tag)) {
          ImageFormat format = ImageFormat.fromTag(tag);

          // if ("qcow2".equals(tagValue)) {
          // format = ImageFormat.DiskQcow2;
          // } else {
          // throw new UnsupportedOperationException("Unknown glance disk_format: " + tagValue);
View Full Code Here

Examples of org.platformlayer.ops.images.ImageFormat

  private CloudImage getImageInfo(DiskImage recipe) throws OpsException {
    final String imageId = Tag.IMAGE_ID.findUnique(recipe.getTags());
    if (imageId == null) {
      throw new OpsException("Image is not yet built: " + recipe).setRetry(TimeSpan.ONE_MINUTE);
    }
    final ImageFormat imageFormat = ImageFormat.valueOf(recipe.getFormat());
    String compression = null;
    switch (imageFormat) {
    case Tar:
      compression = "gzip";
      break;
View Full Code Here

Examples of org.projectforge.renderer.ImageFormat

  {
    final GanttChart ganttChart = createGanttChart();
    if (ganttChart == null) {
      return;
    }
    ImageFormat imageFormat = null;
    final String suffix;
    if (GanttChartEditForm.EXPORT_JPG.equals(exportFormat) == true) {
      suffix = ".jpg";
      imageFormat = ImageFormat.JPEG;
    } else if (GanttChartEditForm.EXPORT_MS_PROJECT_MPX.equals(exportFormat) == true) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.