This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Clases para escribir en los ficheros | |
| import java.io.File; | |
| import java.io.FileWriter; | |
| // Clases para usar Java Reflection | |
| import java.lang.Class; | |
| import java.lang.reflect.Field; | |
| // Listas y mapas para sintetizar la informacion. | |
| import java.util.ArrayList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Docker Container with Wine Installed | |
| # | |
| # Might is interesting install proton from Valve Software for run more apps inside this container | |
| # or use Wine Upstream package, this is a proof of concept only but I hope is useful for study | |
| # how to migrate Windows Containers inside Kubernetes Linux Cluster or create Windows Dependent | |
| # Containers for Linux. | |
| # | |
| # Author: Sergey Neirth | |
| # Create at: 27/03/2021 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2021 Sergio Martinez | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| * this software and associated documentation files (the "Software"), to deal in the | |
| * Software without restriction, including without limitation the rights to use, | |
| * copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the | |
| * Software, and to permit persons to whom the Software is furnished to do so, | |
| * subject to the following conditions: | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern crate ocl; | |
| use ocl::ProQue; | |
| /// Transpose a matrix using OpenCL | |
| /// | |
| /// # Arguments | |
| /// | |
| /// * `width` - Width of the matrix | |
| /// * `height` - Height of the matrix | |
| /// * `matrix` - Matrix to transpose |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:edge | |
| # Install the rest of dependencies inside minio image | |
| RUN apk add minio supervisor rclone fuse3 | |
| # Prepare data temp folder | |
| RUN mkdir -p /data/backup | |
| # Configure rclone remote path | |
| ENV REMOTE_PATH |