Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 323 for ridentifier (0.46 sec)

  1. src/main/java/jcifs/DialectVersion.java

        /**
         * Check if this is an SMB2 dialect version
         *
         * @return the smb2
         */
        public final boolean isSMB2() {
            return this.smb2;
        }
    
        /**
         * Get the SMB2 dialect identifier
         *
         * @return the dialect
         */
        public final int getDialect() {
            if (!this.smb2) {
                throw new UnsupportedOperationException();
            }
            return this.dialect;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. docs/iam/identity-management-plugin.md

    |--------------------|-----------------------------------------|--------------------------------------------------------|
    | user               | string                                  | Identifier for owner of requested credentials          |
    | maxValiditySeconds | integer (>= 900 seconds and < 365 days) | Maximum allowed expiry duration for the credentials    |
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

         * @return the session data associated with the key
         */
        @Nullable
        <T> T computeIfAbsent(@Nonnull Key<T> key, @Nonnull Supplier<T> supplier);
    
        /**
         * Create a key using the given class as an identifier and as the type of the object.
         */
        static <T> Key<T> key(Class<T> clazz) {
            return new Key<>(clazz, clazz);
        }
    
        /**
         * Create a key using the given class and id.
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcConstants.java

     */
    
    package jcifs.dcerpc;
    
    /**
     * Constants for DCERPC protocol operations.
     * This interface defines the constants used in DCERPC communication including
     * packet types, flags, and UUID identifiers.
     */
    public interface DcerpcConstants {
    
        /**
         * NDR syntax UUID for DCE/RPC protocol
         */
        UUID DCERPC_UUID_SYNTAX_NDR = new UUID("8a885d04-1ceb-11c9-9fe8-08002b104860");
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

            }).createPageNumberList());
    
            return fileAuthenticationList;
        }
    
        /**
         * Retrieves a specific file authentication configuration by its ID.
         *
         * @param id the unique identifier of the file authentication configuration
         * @return an OptionalEntity containing the file authentication if found, empty otherwise
         */
        public OptionalEntity<FileAuthentication> getFileAuthentication(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DosError.java

                "The parameter is incorrect.", "Too many Uids active on this session.",
                "The Uid is not known as a valid user identifier on this session.", "The pipe has been ended.",
                "The filename, directory name, or volume label syntax is incorrect.", "The directory is not empty.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/DosError.java

                "The parameter is incorrect.", "Too many Uids active on this session.",
                "The Uid is not known as a valid user identifier on this session.", "The pipe has been ended.",
                "The filename, directory name, or volume label syntax is incorrect.", "The directory is not empty.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Protocol.kt

       *
       * [iana]: https://www.iana.org/assignments/tls-extensiontype-values
       */
      override fun toString(): String = protocol
    
      companion object {
        /**
         * Returns the protocol identified by `protocol`.
         *
         * @throws IOException if `protocol` is unknown.
         */
        @JvmStatic
        @Throws(IOException::class)
        fun get(protocol: String): Protocol {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jun 23 18:58:57 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/HandlerTest.java

            assertEquals("server", parentUrl.getHost());
            assertEquals("/other/file.txt", parentUrl.getPath());
        }
    
        @Test
        @DisplayName("Handler correctly identifies itself as SMB handler")
        void testHandlerEquality() throws Exception {
            // Create two URLs with the same handler
            URL url1 = new URL(null, "smb://host1/share1", handler);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

        /**
         * Gets the IOCTL flags from the response.
         *
         * @return the ioctlFlags
         */
        public int getIoctlFlags() {
            return this.ioctlFlags;
        }
    
        /**
         * Gets the file identifier from the response.
         *
         * @return the fileId
         */
        public byte[] getFileId() {
            return this.fileId;
        }
    
        /**
         * Gets the decoded output data from the response.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top