- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for Backup (0.11 sec)
-
cmd/veeam-sos-api.go
// Currently, there are three capabilities supported: // - Capacity Reporting // - Backup data locality for upload sessions (Veeam Smart Entity) // - Handover of IAM & STS Endpoints instead of manual definition in Veeam Backup & Replication. This allows Veeam // Agents to directly backup to object storage. // // An object storage system can implement one, multiple, or all functions. //
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 00:34:56 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
*/ package org.codelibs.fess.app.web.api.admin.backup; import static org.codelibs.core.stream.StreamUtil.stream; import static org.codelibs.fess.app.web.admin.backup.AdminBackupAction.NDJSON_EXTENTION; import static org.codelibs.fess.app.web.admin.backup.AdminBackupAction.getBackupItems; import static org.codelibs.fess.app.web.admin.backup.AdminBackupAction.getClickLogNdjsonWriteCall;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/UploadForm.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.backup; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; public class UploadForm { @Required public MultipartFormFile bulkFile;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 860 bytes - Viewed (0) -
ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh
# the system libstdc++ 4.4 and provides all other symbols statically. case "${VERSION}" in devtoolset-7) mv "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}" \ "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}.backup" echo -e "OUTPUT_FORMAT(elf64-x86-64)\nINPUT ( libstdc++.so.6.0.13 -lstdc++_nonshared44 )" \ > "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}" cp "./x86_64-pc-linux-gnu/libstdc++-v3/src/.libs/libstdc++_nonshared44.a" \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Sep 24 20:45:58 UTC 2024 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/BackupTests.java
import io.restassured.path.json.JsonPath; @Tag("it") public class BackupTests extends CrudTestBase { private static final String NAME_PREFIX = "backupTest_"; private static final String API_PATH = "/api/admin/backup"; private static final String LIST_ENDPOINT_SUFFIX = "files"; private static final String ITEM_ENDPOINT_SUFFIX = "file"; private static final String KEY_PROPERTY = ""; @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/bucket/notifications/README.md
MINIO_NOTIFY_AMQP_COMMENT (sentence) optionally add a comment to this setting ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 84K bytes - Viewed (0) -
docs/debugging/inspect/main.go
case strings.Contains(inputFileName, ".enc."): outputFileName = strings.Replace(inputFileName, ".enc.", ".", 1) + ".zip" default: outputFileName = inputFileName + ".decrypted" } // Backup any already existing output file _, err := os.Stat(outputFileName) if err == nil { err := os.Rename(outputFileName, outputFileName+"."+time.Now().Format("20060102150405")) if err != nil { fatalErr(err) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 31 14:49:23 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/resources/fess_config.properties
smb.role.from.file=true smb.available.sid.types=1,2,4:2,5:1 file.role.from.file=true ftp.role.from.file=true # backup index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson index.backup.log.load.timeout=60000 # logging logging.search.docs.enabled=true
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.backup; import static org.codelibs.core.stream.StreamUtil.stream; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
cmd/s3-zip-handlers.go
// Peek into a zip archive xMinIOExtract = "x-minio-extract" ) // splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip: // // e.g /path/to/archive.zip/backup-2021/myimage.png => /path/to/archive.zip, backup/myimage.png func splitZipExtensionPath(input string) (zipPath, object string, err error) { idx := strings.Index(input, archivePattern) if idx < 0 { // Should never happen
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 15.8K bytes - Viewed (0)