- Sort Score
- Result 10 results
- Languages All
Results 91 - 95 of 95 for SmbException (0.17 sec)
-
src/main/java/jcifs/smb/SmbNamedPipe.java
response.setExtended(true); } /** * {@inheritDoc} * * @see jcifs.smb.SmbFile#getType() */ @Override public int getType () throws SmbException { return TYPE_NAMED_PIPE; } /** * @return the pipe type */ @Override public int getPipeType () { return this.pipeType; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileOperationsTest.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:17:59 UTC 2023 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
import jcifs.internal.RequestWithPath; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.SMBSigningDigest; import jcifs.internal.util.SMBUtil; import jcifs.smb.SmbException; import jcifs.util.Hexdump; import jcifs.util.Strings; /** * * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
c = "SMB_COM_NT_TRANSACT_SECONDARY"; break; default: c = "UNKNOWN"; } String str = errorCode == 0 ? "0" : SmbException.getMessageByCode( errorCode ); return new String( "command=" + c + ",received=" + received + ",errorCode=" + str +
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
continue; } } catch( SmbAuthException sae ) { if( log.level > 2 ) sae.printStackTrace( log ); } catch( SmbException se ) { if( log.level > 2 ) se.printStackTrace( log ); if( se.getNtStatus() != se.NT_STATUS_UNSUCCESSFUL ) { throw se; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 22 03:57:31 UTC 2020 - 19.7K bytes - Viewed (0)