- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 36 for Gillon (0.06 seconds)
-
docs/site-replication/run-multi-site-ldap.sh
./mc ready minio2 ./mc ready minio3 ./mc admin replicate add minio1 minio2 minio3 ./mc idp ldap policy attach minio1 consoleAdmin --user="uid=dillon,ou=people,ou=swengg,dc=min,dc=io" sleep 5 ./mc admin user info minio2 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io" ./mc admin user info minio3 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io" ./mc admin policy create minio1 rw ./docs/site-replication/rw.json sleep 5
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Sep 24 08:03:58 GMT 2024 - 10.1K bytes - Click Count (0) -
docs/ru/docs/environment-variables.md
$ export MY_NAME="Wade Wilson" // Затем её можно использовать в других программах, например $ echo "Hello $MY_NAME" Hello Wade Wilson ``` </div> //// //// tab | Windows PowerShell <div class="termy"> ```console // Создайте переменную окружения MY_NAME $ $Env:MY_NAME = "Wade Wilson" // Используйте её с другими программами, например
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 12.5K bytes - Click Count (0) -
docs/uk/docs/environment-variables.md
// Ви можете створити змінну оточення MY_NAME командою $ export MY_NAME="Wade Wilson" // Потім можна використати її з іншими програмами, наприклад $ echo "Hello $MY_NAME" Hello Wade Wilson ``` </div> //// //// tab | Windows PowerShell <div class="termy"> ```console // Створіть змінну оточення MY_NAME $ $Env:MY_NAME = "Wade Wilson" // Використайте її з іншими програмами, наприклад
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 11.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/StatsTesting.java
/** * Inputs, expected outputs, and helper methods for tests of {@link StatsAccumulator}, {@link * Stats}, {@link PairedStatsAccumulator}, and {@link PairedStats}. * * @author Pete Gillin */ @NullUnmarked @J2ktIncompatible @GwtIncompatible class StatsTesting { // TODO(cpovirk): Convince myself that this larger error makes sense. static final double ALLOWED_ERROR = isAndroid() ? .25 : 1e-10;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 24K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/StatsTesting.java
/** * Inputs, expected outputs, and helper methods for tests of {@link StatsAccumulator}, {@link * Stats}, {@link PairedStatsAccumulator}, and {@link PairedStats}. * * @author Pete Gillin */ @NullUnmarked @J2ktIncompatible @GwtIncompatible class StatsTesting { // TODO(cpovirk): Convince myself that this larger error makes sense. static final double ALLOWED_ERROR = isAndroid() ? .25 : 1e-10;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 24K bytes - Click Count (0) -
pyproject.toml
"mdx-include >=1.4.1,<2.0.0", "mkdocs-macros-plugin >=1.5.0", "mkdocs-material >=9.7.0", "mkdocs-redirects >=1.2.1,<1.3.0", "mkdocstrings[python] >=0.30.1", "pillow >=11.3.0", "python-slugify >=8.0.4", "pyyaml >=5.3.1,<7.0.0", "typer >=0.21.1", ] docs-tests = [ "httpx >=0.23.0,<1.0.0", "ruff >=0.14.14", # For UJSONResponseCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 12:36:49 GMT 2026 - 10.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java
import java.util.concurrent.TimeoutException; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Unit test for {@link AbstractExecutionThreadService}. * * @author Jesse Wilson */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class AbstractExecutionThreadServiceTest extends TestCase { private final TearDownStack tearDownStack = new TearDownStack(true);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 12.8K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Service.java
* * <p>Implementors of this interface are strongly encouraged to extend one of the abstract classes * in this package which implement this interface and make the threading and state management * easier. * * @author Jesse Wilson * @author Luke Sandberg * @since 9.0 (in 1.0 as {@code com.google.common.base.Service}) */ @DoNotMock("Create an AbstractIdleService") @J2ktIncompatible @GwtIncompatible public interface Service { /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 10.8K bytes - Click Count (0) -
android/guava/src/com/google/common/math/PairedStatsAccumulator.java
/** * A mutable object which accumulates paired double values (e.g. points on a plane) and tracks some * basic statistics over all the values added so far. This class is not thread safe. * * @author Pete Gillin * @since 20.0 */ @J2ktIncompatible @GwtIncompatible public final class PairedStatsAccumulator { /** Creates a new accumulator. */ public PairedStatsAccumulator() {}
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 08 18:35:13 GMT 2025 - 10.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/PairedStatsTest.java
import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Tests for {@link PairedStats}. This tests instances created by {@link * PairedStatsAccumulator#snapshot}. * * @author Pete Gillin */ @NullUnmarked @J2ktIncompatible @GwtIncompatible public class PairedStatsTest extends TestCase { public void testCount() { assertThat(EMPTY_PAIRED_STATS.count()).isEqualTo(0);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:11:48 GMT 2026 - 14.1K bytes - Click Count (0)