- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 331 for sido (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/SambaHelper.java
} fessConfig = ComponentUtil.getFessConfig(); } public String getAccountId(final SID sid) { final int type = sid.getType(); if (logger.isDebugEnabled()) { try { logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); } catch (final Exception e) { // ignore } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0) -
internal/config/crypto.go
"encoding/binary" "errors" "fmt" "io" jsoniter "github.com/json-iterator/go" "github.com/minio/minio/internal/fips" "github.com/minio/minio/internal/kms" "github.com/secure-io/sio-go" "github.com/secure-io/sio-go/sioutil" ) // EncryptBytes encrypts the plaintext with a key managed by KMS. // The context is bound to the returned ciphertext. // // The same context must be provided when decrypting the
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 07 23:55:37 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java
/** * */ public class SmbComFindClose2 extends ServerMessageBlock { private int sid; /** * * @param config * @param sid */ public SmbComFindClose2 ( Configuration config, int sid ) { super(config, SMB_COM_FIND_CLOSE2); this.sid = sid; } @Override protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 22.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
} protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) { if (logger.isDebugEnabled()) { logger.debug("SID:{}", sid); } final int type = sid.getType(); sidSet.add(sid); if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) { try { final CIFSContext context = file.getContext();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java
import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; class Trans2FindNext2 extends SmbComTransaction { private int sid, informationLevel, resumeKey, flags; private String filename; Trans2FindNext2( int sid, int resumeKey, String filename ) { this.sid = sid; this.resumeKey = resumeKey; this.filename = filename; command = SMB_COM_TRANSACTION2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) { if (logger.isDebugEnabled()) { logger.debug("SID:{}", sid); } final int type = sid.getType(); sidSet.add(sid); if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) { try {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0) -
internal/http/headers.go
AmzServerSideEncryptionCopyCustomerAlgorithm = "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm" AmzServerSideEncryptionCopyCustomerKey = "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key" AmzServerSideEncryptionCopyCustomerKeyMD5 = "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key-Md5" AmzEncryptionAES = "AES256" AmzEncryptionKMS = "aws:kms"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 28 15:31:56 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
* "The .NET Developer's Guide to Windows Security" (which is also * available online). * <p> * Direct ACEs are evaluated first in order. The SID of the user performing * the operation and the desired access bits are compared to the SID * and access mask of each ACE. If the SID matches, the allow/deny flags * and access mask are considered. If the ACE is a "deny" * ACE and <i>any</i> of the desired access bits match bits in the access
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
*/ package jcifs.pac; import jcifs.smb.SID; @SuppressWarnings ( "javadoc" ) public class PacSidAttributes { private SID id; private int attributes; public PacSidAttributes ( SID id, int attributes ) { super(); this.id = id; this.attributes = attributes; } public SID getId () { return this.id; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0)