- Sort Score
- Result 10 results
- Languages All
Results 1681 - 1690 of 2,394 for Batch (0.02 sec)
-
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
// The actual server name might be different from TEST_HOSTNAME based on how getHostName() works } } } catch (Exception e) { fail("Failed to invoke makeTargetInfo via reflection: " + e.getMessage()); } } @Test @DisplayName("makeTargetInfo should handle missing domain")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
try { getProject(f1); fail("Expected 'ProjectBuildingException' not thrown."); } catch (final ProjectBuildingException e) { assertNotNull(e.getMessage()); } } /** * Tests whether local version range parent references are built correctly. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 33.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceUtilTest.java
assertNotNull(ResourceUtil.getResource("org/codelibs")); try { ResourceUtil.getResource("hoge", "xml"); fail("2"); } catch (final ResourceNotFoundRuntimeException e) { System.out.println(e); assertEquals("3", "hoge.xml", e.getPath()); } System.out.println(ResourceUtil.getResource(".")); }
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/BinaryTransformer.java
resultData.setData(IOUtils.toByteArray(bis)); resultData.setEncoding(responseData.getCharSet()); return resultData; } catch (final IOException e) { throw new CrawlerSystemException("Could not convert the input stream.", e); } } /**
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
docs/en/docs/js/custom.js
}); }); Promise.all(imagePromises) .then(() => { announceRight.style.display = 'block'; showRandomAnnouncement('announce-right', 10000); }) .catch(() => { // do nothing }); } async function main() { setupTermynal(); showRandomAnnouncement('announce-left', 5000) handleSponsorImages(); }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Sep 22 15:11:52 UTC 2025 - 6.3K bytes - Viewed (2) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverResult.java
import org.apache.maven.api.annotations.Nonnull; /** * Represents the result of a version range resolution request. This interface provides access to * information about resolved versions that match a version range constraint, including any exceptions * that occurred during resolution, the available versions, and their source repositories. *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 3.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory.java
RepositorySystem repositorySystem; try { repositorySystem = container.lookup(RepositorySystem.class); } catch (ComponentLookupException e) { throw new IllegalStateException("Unable to lookup " + RepositorySystem.class.getName()); } if (mirrors) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.7K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.4K bytes - Viewed (0) -
cmd/erasure-multipart.go
return nil, PreConditionFailed{} } if err != nil && !isErrVersionNotFound(err) && !isErrObjectNotFound(err) { return nil, err } // if object doesn't exist return error for If-Match conditional requests // If-None-Match should be allowed to proceed for non-existent objects if err != nil && opts.HasIfMatch && (isErrObjectNotFound(err) || isErrVersionNotFound(err)) { return nil, err } }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Oct 24 04:05:31 UTC 2025 - 47.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractorTest.java
assertTrue(content.contains("コメント")); } public void test_getXml_null() { try { xmlExtractor.getText(null, null); fail(); } catch (final CrawlerSystemException e) { // NOP } }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.4K bytes - Viewed (0)