- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 129 for Javadoc (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
/** * Returns an immutable collection of attached artifacts for the given project. * Attached artifacts are secondary artifacts produced during the build (e.g., sources jar, * javadoc jar, test jars). These artifacts are created and attached during specific * lifecycle phases, so the collection contents depend on the build phase when this method * is called. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:29:13 UTC 2025 - 12K bytes - Viewed (0) -
.idea/inspectionProfiles/Gradle.xml
<replaceConfiguration name="Treat some Guava Collection factory methods as Deprecated" uuid="82f9f9ab-9c3b-367f-99ad-40841dc13819" description="Many no-argument Guava Collection factory methods are marked in their javadoc "Should be treated as deprecated". These should not be used." suppressId="guava-collection-factory" problemDescriptor="Treat some Guava Collection factory methods as Deprecated" text="com.google.common.collect.Lists.newArrayList()" recursive="false"...
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Jun 26 21:49:47 UTC 2024 - 15.4K bytes - Viewed (0) -
README.md
9. Open a Pull Request ### Code Style - Use Eclipse formatter configuration (`src/config/eclipse/formatter/java.xml`) - Follow existing naming conventions - Add comprehensive JavaDoc for public APIs - Write unit and integration tests ## License
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
protected boolean isDaemonThread = false; /** * Creates a new PdfExtractor instance. */ public PdfExtractor() { super(); } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.extractor.Extractor#getText(java.io.InputStream, * java.util.Map) */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12.7K bytes - Viewed (0) -
README.md
mvn clean install # Run tests mvn test # Format code before committing mvn formatter:format mvn license:format ``` ### Code Style - Follow Java coding conventions - Use proper JavaDoc comments for public APIs - Include unit tests for new functionality - Ensure all tests pass before submitting PR ## License
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RangeSet.java
* } * * <p>Note that the behavior of {@link Range#isEmpty()} and {@link Range#isConnected(Range)} may not * be as expected on discrete ranges. See the Javadoc of those methods for details. * * <p>For a {@link Set} whose contents are specified by a {@link Range}, see {@link ContiguousSet}. * * <p>See the Guava User Guide article on <a href=
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
protected boolean standardOutput = false; /** * Constructs a new CommandExtractor. */ public CommandExtractor() { // NOP } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.extractor.Extractor#getText(java.io.InputStream, * java.util.Map) */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
ftpClient.disconnect(); } catch (final IOException e) { logger.debug("Failed to disconnect FTPClient.", e); } } } /* * (non-Javadoc) * * @see org.codelibs.robot.client.S2RobotClient#doGet(java.lang.String) */ @Override public ResponseData doGet(final String uri) { return processRequest(uri, true); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
} else if (pkgs.indexOf("jcifs.smb1") == -1) { pkgs += "|jcifs.smb1"; System.setProperty("java.protocol.handler.pkgs", pkgs); } } // supress javadoc constructor summary by removing 'protected' Config() { } /** * Set the default properties of the static Properties used by <code>Config</code>. This permits
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TableCollectionTest.java
if (supportsRemove) { int initialSize = map.size(); // var oldValue = map.get(keyToRemove); map.remove(keyToRemove); // This line doesn't hold - see the Javadoc comments above. // assertEquals(expectedValue, oldValue); assertFalse(map.containsKey(keyToRemove)); assertEquals(initialSize - 1, map.size()); } else {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.5K bytes - Viewed (0)