- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 24 for Wilson (0.09 seconds)
-
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: 2026-04-03 12:43 - Last Modified: 2026-03-16 22:45 - 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: 2026-04-03 12:43 - Last Modified: 2024-12-21 03:10 - 10.8K bytes - Click Count (0) -
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: 2026-04-03 12:43 - Last Modified: 2026-03-16 22:45 - 12.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
* (This doc discusses {@link ImmutableMap} subclasses only for the JRE flavor; the Android flavor * differs.) * * @author Jesse Wilson * @author Kevin Bourrillion * @author Gregory Kick */ @GwtCompatible final class RegularImmutableMap<K, V> extends ImmutableMap<K, V> { @SuppressWarnings("unchecked")Created: 2026-04-03 12:43 - Last Modified: 2025-12-26 20:08 - 15.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractService.java
* callbacks. Its subclasses must manage threads manually; consider {@link * AbstractExecutionThreadService} if you need only a single execution thread. * * @author Jesse Wilson * @author Luke Sandberg * @since 1.0 */ @GwtIncompatible @J2ktIncompatible public abstract class AbstractService implements Service { private static final ListenerCallQueue.Event<Listener> STARTING_EVENT =Created: 2026-04-03 12:43 - Last Modified: 2025-02-19 21:24 - 20.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java
import java.util.concurrent.atomic.AtomicInteger; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Unit test for {@link AbstractService}. * * @author Jesse Wilson */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class AbstractServiceTest extends TestCase { private static final long LONG_TIMEOUT_MILLIS = 10000; private Thread executionThread;Created: 2026-04-03 12:43 - Last Modified: 2026-03-16 22:45 - 28.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java
import java.util.concurrent.atomic.AtomicInteger; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Unit test for {@link AbstractService}. * * @author Jesse Wilson */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class AbstractServiceTest extends TestCase { private static final long LONG_TIMEOUT_MILLIS = 10000; private Thread executionThread;Created: 2026-04-03 12:43 - Last Modified: 2026-03-16 22:45 - 28.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
import junit.framework.TestSuite; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Tests for {@link ImmutableSortedMap}. * * @author Kevin Bourrillion * @author Jesse Wilson * @author Jared Levy */ @GwtCompatible @SuppressWarnings("AlwaysThrows") @NullMarked public class ImmutableSortedMapTest extends TestCase { // TODO: Avoid duplicating code in ImmutableMapTestCreated: 2026-04-03 12:43 - Last Modified: 2026-03-13 13:01 - 29.8K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Splitter.java
* * <p>See the Guava User Guide article on <a * href="https://github.com/google/guava/wiki/StringsExplained#splitter">{@code Splitter}</a>. * * @author Julien Silland * @author Jesse Wilson * @author Kevin Bourrillion * @author Louis Wasserman * @since 1.0 */ @GwtCompatible public final class Splitter { private final CharMatcher trimmer; private final boolean omitEmptyStrings;
Created: 2026-04-03 12:43 - Last Modified: 2026-02-23 19:19 - 23.8K 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: 2026-04-05 07:19 - Last Modified: 2026-03-19 17:56 - 12.5K bytes - Click Count (0)