Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 321 for Identifier (0.48 sec)

  1. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          tag = 2L,
        ) {
          derWriter.writeOctetString("Jones".encodeUtf8())
        }
    
        assertThat(buffer.readByteString()).isEqualTo("82054A6F6E6573".decodeHex())
      }
    
      @Test fun `decode object identifier without adapter`() {
        val buffer =
          Buffer()
            .write("0603883703".decodeHex())
    
        val derReader = DerReader(buffer)
    
        derReader.read("test") { header ->
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

            return relatedQueryList;
        }
    
        /**
         * Retrieves a specific related query by its unique identifier.
         *
         * @param id the unique identifier of the related query to retrieve
         * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

         */
        public SmbComOpenAndXResponse(final Configuration config, final SmbComSeekResponse andxResp) {
            super(config, andxResp);
        }
    
        /**
         * Gets the file identifier.
         *
         * @return the fid
         */
        public final int getFid() {
            return this.fid;
        }
    
        /**
         * Gets the file data size.
         *
         * @return the dataSize
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

     */
    public abstract class DictionaryFile<T extends DictionaryItem> {
        /** The dictionary manager responsible for this file. */
        protected DictionaryManager dictionaryManager;
    
        /** The unique identifier for this dictionary file. */
        protected String id;
    
        /** The file path of this dictionary. */
        protected String path;
    
        /** The timestamp when this dictionary file was created or last modified. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

        // Pending operations
        private final List<CommonServerMessageBlock> pendingOperations;
    
        /**
         * Create channel information
         *
         * @param channelId unique channel identifier
         * @param transport SMB transport for this channel
         * @param localInterface local network interface
         * @param remoteInterface remote network interface
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmMessage.java

        /**
         * NTLMSSP Type 1 message identifier.
         */
        protected static final int NTLMSSP_TYPE1 = 0x1;
    
        /**
         * NTLMSSP Type 2 message identifier.
         */
        protected static final int NTLMSSP_TYPE2 = 0x2;
    
        /**
         * NTLMSSP Type 3 message identifier.
         */
        protected static final int NTLMSSP_TYPE3 = 0x3;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. docs/sts/wso2.md

    | aud        | _string array_ | The token audience list. The client identifier of the OAuth clients that the JWT is intended for, is sent herewith.                                                                     |
    | azp        | _string_       | The authorized party for which the token is issued to. The client identifier of the OAuth client that the token is issued for, is sent herewith.                                        |
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java

     * authentication tag.
     *
     * @author mbechler
     */
    public class Smb2TransformHeader implements Encodable {
    
        /**
         * Transform header protocol identifier: 0xFD534D42 (0xFD 'S' 'M' 'B')
         */
        public static final int TRANSFORM_PROTOCOL_ID = 0xFD534D42;
    
        /**
         * Size of the transform header in bytes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

        // Phase qualifiers
        // ======================
        String BEFORE = "before:";
        String AFTER = "after:";
        String AT = "at:";
    
        /**
         * Name or identifier of this lifecycle.
         *
         * @return the unique identifier for this lifecycle
         */
        @Override
        String id();
    
        /**
         * Collection of main phases for this lifecycle.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

         *
         * @param username The username obtained from SPNEGO authentication
         */
        public SpnegoCredential(final String username) {
            this.username = username;
        }
    
        /**
         * Gets the user identifier from this credential.
         *
         * @return The username from SPNEGO authentication
         */
        @Override
        public String getUserId() {
            return username;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top