- Sort Score
- Result 10 results
- Languages All
Results 1571 - 1580 of 4,221 for Avoid (0.03 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/testers/QueueOfferTester.java
public class QueueOfferTester<E> extends AbstractQueueTester<E> { @CollectionFeature.Require(SUPPORTS_ADD) public void testOffer_supportedNotPresent() { assertTrue("offer(notPresent) should return true", getQueue().offer(e3())); expectAdded(e3()); } @CollectionFeature.Require({SUPPORTS_ADD, ALLOWS_NULL_VALUES}) public void testOffer_nullSupported() { assertTrue("offer(null) should return true", getQueue().offer(null));
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
class FileInformationTest { /** * Test that interface constants are correctly defined */ @Test @DisplayName("Test FileInformation constants are correctly defined") void testInterfaceConstants() { // Verify all constants have expected values assertEquals((byte) 20, FileInformation.FILE_ENDOFFILE_INFO); assertEquals((byte) 0x4, FileInformation.FILE_BASIC_INFO);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
@BeforeEach public void setUp() { try { BaseConfiguration config = new BaseConfiguration(false); mockContext = new BaseContext(config); response = new SmbComNegotiateResponse(mockContext); } catch (Exception e) { throw new RuntimeException("Failed to set up test", e); } } @Test public void testConstructor() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java
return convertEmptyToNull(createdBy); } public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = value; } public Long getCreatedTime() { checkSpecifiedProperty("createdTime"); return createdTime; } public void setCreatedTime(Long value) { registerModifiedProperty("createdTime");
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java
private Source source; private static final String GROUP_ID = "test"; @BeforeEach void setUp() throws Exception { source = new Source(); projectArtifact = createArtifactSpec("project", "1.0", null); } @Test @Disabled("works, but we don't fail on cycles presently") void testCircularDependencyNotIncludingCurrentProject()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 43K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
return getProperties().keySet(); } @Override public void list(final PrintStream out) { getProperties().list(out); } @Override public void list(final PrintWriter out) { getProperties().list(out); } @Override public synchronized void load(final InputStream inStream) throws IOException { final Properties prop = new Properties();
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
*/ public class HandlerTest extends PlainTestCase { @Override protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } /** * Test that the gcs protocol is correctly recognized. */ public void test_protocol() throws Exception { URL url = new URL("gcs://bucket/object");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
@Override public void setUp() throws Exception { super.setUp(); reference = new ValidTestObject(1, 2); equalsTester = new EqualsTester(); equalObject1 = new ValidTestObject(1, 2); equalObject2 = new ValidTestObject(1, 2); notEqualObject1 = new ValidTestObject(0, 2); } /** Test null reference yields error */ public void testAddNullReference() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 13.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
*/ public void setClassLoadingStrategy(String classLoadingStrategy) { this.classLoadingStrategy = classLoadingStrategy; } // -- void setClassLoadingStrategy( String ) /** * Set the group ID of the extension's artifact. * * @param groupId a groupId object. */ public void setGroupId(String groupId) { this.groupId = groupId;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractorEnhancedTest.java
@Override protected void setUp() throws Exception { super.setUp(); final StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("filenameExtractor", FilenameExtractor.class); filenameExtractor = container.getComponent("filenameExtractor"); } /** * Test extraction with valid filename in parameters. */ public void test_getText_withValidFilename() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 7K bytes - Viewed (0)