- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 320 for javadoc (0.06 sec)
-
src/test/java/jcifs/tests/ContextConfigTest.java
import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.SmbFile; import org.mockito.Matchers; import static org.junit.Assert.*; /** * @author mbechler * */ @SuppressWarnings ( "javadoc" ) public class ContextConfigTest { private SingletonContext context; @Before public void setUp () { this.context = SingletonContext.getInstance(); } @Test
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
private static final Logger logger = LoggerFactory.getLogger(PdfExtractor.class); protected long timeout = 30000; // 30sec protected boolean isDaemonThread = false; /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.extractor.Extractor#getText(java.io.InputStream, * java.util.Map) */ @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 9.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/OptionalTest.java
return FluentIterable.from(ImmutableList.<Number>of()); } /* * The following tests demonstrate the shortcomings of or() and test that the casting workaround * mentioned in the method Javadoc does in fact compile. */ @SuppressWarnings("unused") // compilation test public void testSampleCodeError1() { Optional<Integer> optionalInt = getSomeOptionalInt();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/RandomAccessFileTest.java
import jcifs.smb.SmbFile; import jcifs.smb.SmbFileOutputStream; import jcifs.smb.SmbRandomAccessFile; /** * @author mbechler * */ @RunWith ( Parameterized.class ) @SuppressWarnings ( "javadoc" ) public class RandomAccessFileTest extends BaseCIFSTest { private static final Logger log = LoggerFactory.getLogger(RandomAccessFileTest.class); /** * @param name * @param properties
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java
private static final Logger logger = LoggerFactory.getLogger(EmlExtractor.class); protected Properties mailProperties = new Properties(); /* (non-Javadoc) * @see org.codelibs.robot.extractor.Extractor#getText(java.io.InputStream, java.util.Map) */ @Override public ExtractData getText(final InputStream in, final Map<String, String> params) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 10.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
* <code><execution></code> element. */ private String phase; /** Specify the version when the Mojo was added to the API. Similar to Javadoc since. */ private String since; /** Reference the invocation phase of the Mojo. */ private String executePhase; /** Reference the invocation goal of the Mojo. */ private String executeGoal;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/PACTest.java
byte[] datab = data.getBytes(StandardCharsets.US_ASCII); byte[] javaMac = sun.security.krb5.internal.crypto.ArcFourHmac.calculateChecksum(keyb, usage, datab, 0, datab.length); byte[] mac = PacMac.calculateMacArcfourHMACMD5(usage, makeKey(keyb, 23), datab); checkBytes(javaMac, mac); checkBytes(Hex.decode(expect), javaMac); checkBytes(Hex.decode(expect), mac); } @Test
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 22.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* minimum of one element. The maximum number of elements is in turn dependent on build configuration and lifecycle * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are * all the artifact signed, etc.). * <p> * This method is shorthand for {@link Project#getArtifacts()} and {@link #getAttachedArtifacts(Project)} methods.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 24 11:52:48 UTC 2024 - 7.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/SignedBytes.java
* href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>. * * @author Kevin Bourrillion * @since 1.0 */ // TODO(kevinb): how to prevent warning on UnsignedBytes when building GWT // javadoc? @GwtCompatible @ElementTypesAreNonnullByDefault public final class SignedBytes { private SignedBytes() {} /** * The largest power of two that can be represented as a signed {@code byte}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
import jcifs.smb.SmbUnsupportedOperationException; import jcifs.smb.WinError; /** * * * * @author mbechler */ @RunWith ( Parameterized.class ) @SuppressWarnings ( "javadoc" ) public class FileAttributesTest extends BaseCIFSTest { public FileAttributesTest ( String name, Map<String, String> properties ) { super(name, properties); } @Parameters ( name = "{0}" )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0)