- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 329 for wrap (0.06 sec)
-
util/gradle_integration_tests.sh
# integration-tests/gradle/gradlew # integration-tests/gradle/gradlew.bat # Please commit your changes or stash them before you switch branches. GRADLE_TEMP="$(mktemp -d)" trap 'rm -rf "${GRADLE_TEMP}"' EXIT # The Gradle tests need the pom.xml only to read its version number. # (And the file needs to be two directory levels up from the Gradle build file.)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 16 20:48:20 UTC 2023 - 1.5K bytes - Viewed (0) -
buildscripts/minio-upgrade.sh
#!/bin/bash trap 'cleanup $LINENO' ERR # shellcheck disable=SC2120 cleanup() { MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \ -f "buildscripts/upgrade-tests/compose.yml" \ down || true MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \ -f "buildscripts/upgrade-tests/compose.yml" \ rm || true for volume in $(docker volume ls -q | grep upgrade); do docker volume rm ${volume} || true done
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 2.6K bytes - Viewed (0) -
buildscripts/multipart-quorum-test.sh
echo "minio executable binary not found in current directory" exit 1 fi if [ ! -x "$PWD/minio" ]; then echo "minio executable binary not found in current directory" exit 1 fi trap 'catch $LINENO' ERR function purge() { rm -rf "$1" } # shellcheck disable=SC2120 catch() { if [ $# -ne 0 ]; then echo "error on line $1" fi echo "Cleaning up instances of MinIO"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 10:51:23 UTC 2024 - 2.9K bytes - Viewed (0) -
android/guava/src/com/google/common/io/CountingOutputStream.java
* @since 1.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public final class CountingOutputStream extends FilterOutputStream { private long count; /** * Wraps another output stream, counting the number of bytes written. * * @param out the output stream to be wrapped */ public CountingOutputStream(OutputStream out) { super(checkNotNull(out)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 2K bytes - Viewed (0) -
docs/bucket/replication/delete-replication.sh
#!/usr/bin/env bash echo "Running $0" if [ -n "$TEST_DEBUG" ]; then set -x fi trap 'catch $LINENO' ERR # shellcheck disable=SC2120 catch() { if [ $# -ne 0 ]; then echo "error on line $1" echo "dc1 server logs =========" cat /tmp/dc1.log echo "dc2 server logs =========" cat /tmp/dc2.log fi echo "Cleaning up instances of MinIO" set +e pkill minio pkill mc rm -rf /tmp/xl/
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 3.9K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java
* under the License. */ package org.apache.maven.building; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.nio.charset.StandardCharsets; /** * Wraps an ordinary {@link CharSequence} as a source. * */ public class StringSource implements Source { private final String content; private final String location; private final int hashCode;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java
import java.io.File; import java.net.URI; import java.nio.file.Path; import org.apache.maven.building.FileSource; import org.apache.maven.model.locator.ModelLocator; /** * Wraps an ordinary {@link File} as a model source. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
guava/src/com/google/common/eventbus/DeadEvent.java
* the License. */ package com.google.common.eventbus; import static com.google.common.base.Preconditions.checkNotNull; import com.google.common.base.MoreObjects; /** * Wraps an event that was posted, but which had no subscribers and thus could not be delivered. * * <p>Registering a DeadEvent subscriber is useful for debugging or logging, as it can detect
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 22 13:05:46 UTC 2021 - 2.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java
* limitations under the License. */ import org.apache.maven.model.interpolation.reflection.ReflectionValueExtractor; import org.codehaus.plexus.interpolation.AbstractValueSource; /** * Wraps an object, providing reflective access to the object graph of which the * supplied object is the root. Expressions like 'child.name' will translate into * 'rootObject.getChild().getName()' for non-boolean properties, and
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/vnd.visio", "application/vnd.visionary", "application/vnd.vividence.scriptfile", "application/vnd.vsf", "application/vnd.wap.sic", "application/vnd.wap.slc", "application/vnd.wap.wbxml", "application/vnd.wap.wmlc", "application/vnd.wap.wmlscriptc", "application/vnd.webturbo", "application/vnd.wfa.wsc", "application/vnd.wmc", "application/vnd.wmf.bootstrap",
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Aug 01 21:40:30 UTC 2020 - 49K bytes - Viewed (0)