- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 320 for javadoc (0.06 sec)
-
src/main/java/jcifs/SmbConstants.java
*/ package jcifs; /** * Utility class holding several protocol constrants * * @author mbechler * * @internal */ @SuppressWarnings ( "javadoc" ) public interface SmbConstants { static final int DEFAULT_PORT = 445; static final int DEFAULT_MAX_MPX_COUNT = 10; static final int DEFAULT_RESPONSE_TIMEOUT = 30000;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
*/ package jcifs.pac; import java.io.ByteArrayInputStream; import java.io.DataInputStream; import java.io.IOException; import java.util.Date; import jcifs.smb.SID; @SuppressWarnings ( "javadoc" ) public class PacLogonInfo { private Date logonTime; private Date logoffTime; private Date kickOffTime; private Date pwdLastChangeTime; private Date pwdCanChangeTime;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosEncData.java
import javax.security.auth.kerberos.KerberosKey; import org.bouncycastle.asn1.*; import jcifs.pac.ASN1Util; import jcifs.pac.PACDecodingException; import jcifs.util.Encdec; @SuppressWarnings ( "javadoc" ) public class KerberosEncData { private String userRealm; private String userPrincipalName; private ArrayList<InetAddress> userAddresses; private List<KerberosAuthData> userAuthorizations;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
import sun.security.krb5.PrincipalName; import sun.security.krb5.RealmException; import sun.security.krb5.internal.KerberosTime; /** * @author mbechler * */ @SuppressWarnings ( { "javadoc", "restriction" } ) @RunWith ( Parameterized.class ) public class KerberosTest extends BaseCIFSTest { private static final Logger log = LoggerFactory.getLogger(KerberosTest.class); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0) -
fess-crawler/pom.xml
<groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:13 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; @SuppressWarnings ( "javadoc" ) public interface NtStatus { /* * Don't bother to edit this. Everything within the interface * block is automatically generated from the ntstatus package. */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 10:09:29 UTC 2019 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/DfsTest.java
import jcifs.SmbTransport; import jcifs.internal.dfs.DfsReferralDataImpl; import jcifs.smb.DfsImpl; /** * @author mbechler * */ @RunWith ( Parameterized.class ) @SuppressWarnings ( "javadoc" ) public class DfsTest extends BaseCIFSTest { private static final Logger log = LoggerFactory.getLogger(DfsTest.class); /** * @param name * @param properties */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
return authenticator; } catch (final Exception e) { throw new SsoLoginException("Failed to initialize SPNEGO.", e); } } /* (non-Javadoc) * @see org.codelibs.fess.sso.spnego.SsoAuthenticator#getLoginCredential() */ @Override public LoginCredential getLoginCredential() { return LaRequestUtil.getOptionalRequest().map(request -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/TimeoutTest.java
import jcifs.smb.SmbTreeHandleInternal; import jcifs.util.transport.ConnectionTimeoutException; /** * @author mbechler * */ @RunWith ( Parameterized.class ) @SuppressWarnings ( "javadoc" ) public class TimeoutTest extends BaseCIFSTest { public TimeoutTest ( String name, Map<String, String> properties ) { super(name, properties); } @Parameters ( name = "{0}" )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
protected void log(final LogHelper logHelper, final LogType key, final Object... objs) { if (logHelper != null) { logHelper.log(key, objs); } } /* * (non-Javadoc) * * @see java.lang.Runnable#run() */ @Override public void run() { log(logHelper, LogType.START_THREAD, crawlerContext); int threadCheckCount = 0;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 15.5K bytes - Viewed (0)