Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for ap (0.02 sec)

  1. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    aosta-valley.it
    aosta.it
    aostavalley.it
    aoste.it
    ap-east-1.elasticbeanstalk.com
    ap-northeast-1.elasticbeanstalk.com
    ap-northeast-2.elasticbeanstalk.com
    ap-northeast-3.elasticbeanstalk.com
    ap-south-1.elasticbeanstalk.com
    ap-southeast-1.elasticbeanstalk.com
    ap-southeast-2.elasticbeanstalk.com
    ap-southeast-3.elasticbeanstalk.com
    ap.gov.br
    ap.gov.pl
    ap.it
    ap.leg.br
    ap.ngrok.io
    aparecida.br
    apartments
    api.gov.uk
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  2. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    aosta-valley.it
    aosta.it
    aostavalley.it
    aoste.it
    ap-east-1.elasticbeanstalk.com
    ap-northeast-1.elasticbeanstalk.com
    ap-northeast-2.elasticbeanstalk.com
    ap-northeast-3.elasticbeanstalk.com
    ap-south-1.elasticbeanstalk.com
    ap-southeast-1.elasticbeanstalk.com
    ap-southeast-2.elasticbeanstalk.com
    ap-southeast-3.elasticbeanstalk.com
    ap.gov.br
    ap.gov.pl
    ap.it
    ap.leg.br
    ap.ngrok.io
    aparecida.br
    apartments
    api.gov.uk
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  3. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

    /**
     * Represents a Kerberos AP-REQ (Application Request) message.
     * This class parses and contains the authentication request sent from a client to a server.
     */
    public class KerberosApRequest {
    
        private byte apOptions;
        private KerberosTicket ticket;
    
        /**
         * Creates a Kerberos AP request from a token.
         *
         * @param token the Kerberos AP-REQ token
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java

        void sequenceConstructor_minimal_valid_setsApOptions_noTicket() throws Exception {
            // Arrange
            byte ap = (byte) 0x7A;
            ASN1Sequence seq = buildMinimalApReqSeq(ap);
    
            // Act
            KerberosApRequest req = new KerberosApRequest(seq, null);
    
            // Assert
            assertEquals(ap, req.getApOptions(), "apOptions should reflect BIT STRING's first byte");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    s3.ap-south-1.amazonaws.com
    s3-accesspoint.ap-south-1.amazonaws.com
    s3-object-lambda.ap-south-1.amazonaws.com
    s3-website.ap-south-1.amazonaws.com
    s3.dualstack.ap-south-2.amazonaws.com
    s3-accesspoint.dualstack.ap-south-2.amazonaws.com
    s3-website.dualstack.ap-south-2.amazonaws.com
    s3.ap-south-2.amazonaws.com
    s3-accesspoint.ap-south-2.amazonaws.com
    s3-object-lambda.ap-south-2.amazonaws.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (1)
  6. docs/vi/docs/deployment/index.md

    Tôi sẽ chỉ ra một số khái niệm chính cần thiết khi triển khai một ứng dụng **FastAPI** (mặc dù hầu hết nó áp dụng cho bất kỳ loại ứng dụng web nào).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 28 14:14:58 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/kerberos/KerberosToken.java

         *
         * @return the KerberosTicket object
         */
        public KerberosTicket getTicket() {
            return this.apRequest.getTicket();
        }
    
        /**
         * Returns the Kerberos AP request.
         *
         * @return the KerberosApRequest object
         */
        public KerberosApRequest getApRequest() {
            return this.apRequest;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosConstants.java

     */
    public interface KerberosConstants {
    
        /** Kerberos OID identifier */
        String KERBEROS_OID = "1.2.840.113554.1.2.2";
        /** Kerberos protocol version */
        String KERBEROS_VERSION = "5";
    
        /** Kerberos AP-REQ message type */
        String KERBEROS_AP_REQ = "14";
    
        /** Address family: Internet (IPv4) */
        int AF_INTERNET = 2;
        /** Address family: CHANET */
        int AF_CHANET = 5;
        /** Address family: XNS */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/pac/kerberos/KerberosTokenTest.java

         *
         * @throws IOException if an I/O error occurs
         */
        @Test
        void testConstructorWithWrongTagClass() throws IOException {
            // Create AP-REQ structure
            ASN1Sequence apReqSequence = new DERSequence(new ASN1Encodable[] { new DERTaggedObject(true, 0, new ASN1Integer(5)), // pvno
                    new DERTaggedObject(true, 1, new ASN1Integer(14)), // msg-type
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

        private String serverRealm;
        private KerberosEncData encData;
    
        /**
         * Constructs a KerberosTicket from token bytes.
         *
         * @param token the ticket token bytes
         * @param apOptions AP options flags
         * @param keys array of Kerberos keys for decryption
         * @throws PACDecodingException if ticket decoding fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top