- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 519 for Attributes (0.07 sec)
-
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
when(mockNdrBuffer.dec_ndr_long()).thenReturn(100, 1, 2, 3, 4, 5); // length, _root_directoryp, _object_namep, attributes, security_descriptor, _security_quality_of_servicep objAttr.decode(mockNdrBuffer); assertEquals(100, objAttr.length); assertEquals(3, objAttr.attributes); assertEquals(4, objAttr.security_descriptor); verify(objAttr.root_directory).decode(mockDeferredNdrBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java
// FileBasicInfo typically contains creation time, last access time, last write time, change time, and attributes byte[] buffer = new byte[40]; // Mock times (8 bytes each) for (int i = 0; i < 32; i++) { buffer[i] = (byte) (i % 256); } // Mock attributes (4 bytes) buffer[32] = 0x01; buffer[33] = 0x00; buffer[34] = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
cmd/object-api-options.go
return } } return } func parseObjectAttributes(h http.Header) (attributes map[string]struct{}) { attributes = make(map[string]struct{}) for _, headerVal := range h.Values(xhttp.AmzObjectAttributes) { for v := range strings.SplitSeq(strings.TrimSpace(headerVal), ",") { if v != "" { attributes[v] = struct{}{} } } } return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:34:38 UTC 2025 - 14.2K bytes - Viewed (0) -
cmd/ftp-server-driver.go
claims[ldapUser] = lookupResult.NormDN claims[ldapActualUser] = lookupResult.ActualDN claims[ldapUserN] = ctx.Sess.LoginUser() // Add LDAP attributes that were looked up into the claims. for attribKey, attribValue := range lookupResult.Attributes { claims[ldapAttribPrefix+attribKey] = attribValue } cred, err := auth.GetNewCredentialsWithMetadata(claims, globalActiveCred.SecretKey) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java
/** * Trans2 QueryPathInformation request message for querying file metadata. * This class implements the TRANS2_QUERY_PATH_INFORMATION transaction to retrieve * various file information levels such as basic info, standard info, and attributes. */ public class Trans2QueryPathInformation extends SmbComTransaction { private final int informationLevel; /** * Constructs a Trans2QueryPathInformation request. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
import jcifs.internal.smb2.ServerMessageBlock2Response; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * SMB2 Create response message. This response contains the file ID and attributes * of the created or opened file or directory. * * @author mbechler * */ public class Smb2CreateResponse extends ServerMessageBlock2Response implements SmbBasicFileInfo {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
* operation to return. */ int FILE_NOTIFY_CHANGE_CREATION = 0x00000040; /** * Any change to the extended attributes (EA) of a file in the watched directory or subtree causes a change notification wait operation to return. */ int FILE_NOTIFY_CHANGE_EA = 0x00000080; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
/** * Replaces all parameters with the given attribute with parameters using the given * values. If there are no values, any existing parameters with the given attribute are removed. * * @throws IllegalArgumentException if either {@code attribute} or {@code values} is invalid * @since 24.0 */ public MediaType withParameters(String attribute, Iterable<String> values) { checkNotNull(attribute);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
<artifactId>project-artifact</artifactId> <version>0.0.0.0</version> <packaging>type</packaging> ]]></configuration> <description> This is the Artifact instance created from the essential project attributes: groupId, artifactId, version, and packaging (with a default packaging of 'jar'). </description> </expression> <expression> <syntax>project.parent</syntax> <configuration> <![CDATA[
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
throws IOException { Manifest manifest = new Manifest(); // Without version, the manifest is silently ignored. Ugh! manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0"); manifest.getMainAttributes().put(Attributes.Name.CLASS_PATH, jarFile.getName()); Closer closer = Closer.create(); try { FileOutputStream fileOut = closer.register(new FileOutputStream(jarFile));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0)