- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 124 for GT (0.01 sec)
-
buildscripts/verify-healing-empty-erasure-set.sh
while [ $(/tmp/mc admin info --json myminio | jq '.info.servers[].drives[].state | select(. != "ok")' | wc -l) -gt 0 ]; do sleep 1; done # Wait for all drives to be healed while [ $(/tmp/mc admin info --json myminio | jq '.info.servers[].drives[].healing | select(. != null) | select(. == true)' | wc -l) -gt 0 ]; do sleep 1; done # Wait for Status: in MinIO output while true; do rv=$(check_online) if [ "$rv" != "1" ]; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 3.7K bytes - Viewed (0) -
docs/ru/docs/tutorial/path-params-numeric-validations.md
{* ../../docs_src/path_params_numeric_validations/tutorial004_an_py39.py hl[10] *} ## Валидация числовых данных: больше и меньше или равно То же самое применимо к: * `gt`: больше (`g`reater `t`han) * `le`: меньше или равно (`l`ess than or `e`qual) {* ../../docs_src/path_params_numeric_validations/tutorial005_an_py39.py hl[10] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainPrivate.java
public interface ToolchainPrivate extends Toolchain { /** * Let the toolchain decide if it matches requirements defined * in the toolchain plugin configuration. * @param requirements Map<String, String> key value pair, may not be {@code null} * @return {@code true} if the requirements match, otherwise {@code false} */ boolean matchesRequirements(Map<String, String> requirements); /** *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 1.6K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ProjectScopeProvider.java
* <p> * Example usage: * <pre> * public class CustomProjectScopeProvider implements ProjectScopeProvider { * public Collection<ProjectScope> provides() { * return Collections.singleton(projectScope("integration-test")); * } * } * </pre> * * @see org.apache.maven.api.ProjectScope * @see org.apache.maven.api.spi.ExtensibleEnumProvider
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PackagingProvider.java
* packaging types will be available throughout the Maven build process. * <p> * Example usage: * <pre> * public class CustomPackagingProvider implements PackagingProvider { * public Collection<Packaging> provides() { * return Arrays.asList( * packaging("docker-image"), * packaging("flatpak") * ); * } * } * </pre> * * @see org.apache.maven.api.Packaging
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2K bytes - Viewed (0) -
buildscripts/test-timeout.sh
hdr_timeout=$1 body_timeout=$2 start=$(date +%s) timeout 5m bash -c "gen_put_request $hdr_timeout $body_timeout | netcat 127.0.0.1 $start_port | read" || return -1 [ $(($(date +%s) - start)) -gt $((srv_hdr_timeout + srv_idle_timeout + 1)) ] && return -1 return 0 } function test_minio_with_timeout() { start_port=$1 export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio123
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Dec 02 13:21:17 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LifecycleProvider.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.2K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PathScopeProvider.java
* <p> * Example usage: * <pre> * public class CustomPathScopeProvider implements PathScopeProvider { * public Collection<PathScope> provides() { * return Collections.singleton(pathScope("integration-test", * ProjectScope.TEST, DependencyScope.TEST)); * } * } * </pre> * * @see org.apache.maven.api.PathScope
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/TypeProvider.java
* and their provided types will be available throughout the Maven build process. * <p> * Example usage: * <pre> * public class CustomTypeProvider implements TypeProvider { * public Collection<Type> provides() { * return Arrays.asList( * type("kotlin-library", "jar", "kotlin"), * type("docker-image", "tar.gz", null) * ); * } * } * </pre> *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
* happen, as it is possible that higher level application logic prevents the cyclic lock * acquisition from occurring. One example of a false positive is: * * <pre> * LockA -> LockB -> LockC * LockA -> LockC -> LockB * </pre> * * <p><strong>ReadWriteLocks</strong> * * <p>While {@code ReadWriteLock} instances have different properties and can form cycles without
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 35.9K bytes - Viewed (0)