- Sort Score
- Result 10 results
- Languages All
Results 1451 - 1460 of 1,940 for voiced (0.18 sec)
-
guava-tests/test/com/google/common/util/concurrent/RunnablesTest.java
import org.jspecify.annotations.NullUnmarked; /** * Unit tests for {@link Runnables}. * * @author Olivier Pernet */ @GwtCompatible @NullUnmarked public class RunnablesTest extends TestCase { public void testDoNothingRunnableIsSingleton() { assertSame(Runnables.doNothing(), Runnables.doNothing()); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1K bytes - Viewed (0) -
build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithInnerTypes.java
class IgnoreMe {} // ignore anonymous classes return new Sub2Interface() { }; } // ignore anonymous classes final Runnable ignoreMe = new Runnable() { public void run() { } }; InnerClass.AnotherInner getInnerClassProp() { return null; }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 876 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 16:01:38 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
return boostExpression; } /** * Sets the boost expression used to calculate boost values. * * @param expression the boost expression string */ public void setBoostExpression(final String expression) { boostExpression = expression; } /** * Gets the current match expression. * * @return the match expression string */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
} /** * Initializes the facet configuration from Fess configuration properties. * This method is called after dependency injection to load default facet settings. */ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (StringUtil.isNotBlank(fessConfig.getQueryFacetFields())) { field = StreamUtil.split(fessConfig.getQueryFacetFields(), ",")Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/DefaultProjectManagerTest.java
class DefaultProjectManagerTest { private DefaultProjectManager projectManager; private Project project; private ProducedArtifact artifact; private Path artifactPath; @Test void attachArtifact() { InternalMavenSession session = Mockito.mock(InternalMavenSession.class); ArtifactManager artifactManager = Mockito.mock(ArtifactManager.class); MavenProject mavenProject = new MavenProject();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java
} @Override public void addInEdge(E edge, N node, boolean isSelfLoop) { checkNotNull(edge); checkNotNull(node); if (isSelfLoop) { checkPositive(++selfLoopCount); } N previousNode = inEdgeMap.put(edge, node); checkState(previousNode == null); } @Override public void addOutEdge(E edge, N node) { checkNotNull(edge);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.5K bytes - Viewed (0) -
guava/src/com/google/common/graph/MapIteratorCache.java
return backingMap.put(key, value); } @CanIgnoreReturnValue final @Nullable V remove(Object key) { checkNotNull(key); clearCache(); return backingMap.remove(key); } final void clear() { clearCache(); backingMap.clear(); } @Nullable V get(Object key) { checkNotNull(key); V value = getIfCached(key);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/text/DecimalFormatSymbolsUtilTest.java
import java.util.Locale; import junit.framework.TestCase; /** * @author higa * */ public class DecimalFormatSymbolsUtilTest extends TestCase { /** * @throws Exception */ public void testGetDecimalFormatSymbols() throws Exception { final DecimalFormatSymbols symbols = DecimalFormatSymbolsUtil.getDecimalFormatSymbols(Locale.GERMAN);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/text/DecimalFormatUtilTest.java
import java.util.Locale; import junit.framework.TestCase; /** * @author higa * */ public class DecimalFormatUtilTest extends TestCase { /** * @throws Exception */ public void testNormalize() throws Exception { assertEquals("1", "1000.00", DecimalFormatUtil.normalize("1,000.00", Locale.JAPAN)); assertEquals("2", "1000", DecimalFormatUtil.normalize("1,000", Locale.JAPAN));Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.1K bytes - Viewed (0)