Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,633 for Ticket (0.09 sec)

  1. src/crypto/tls/ticket.go

    	}
    	return cs.session.ticket, cs.session, nil
    }
    
    // NewResumptionState returns a state value that can be returned by
    // [ClientSessionCache.Get] to resume a previous session.
    //
    // state needs to be returned by [ParseSessionState], and the ticket and session
    // state must have been returned by [ClientSessionState.ResumptionState].
    func NewResumptionState(ticket []byte, state *SessionState) (*ClientSessionState, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

                        throw new PACDecodingException("Malformed Kerberos Ticket");
                    try {
                        this.ticket = new KerberosTicket(derTicket.getBaseObject().getEncoded(), this.apOptions, keys);
                    } catch (IOException e) {
                        throw new PACDecodingException("Malformed Kerberos Ticket", e);
                    }
                    break;
                case 4:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    	// The balanced tree is a treap using ticket as the random heap priority.
    	// That is, it is a binary tree ordered according to the elem addresses,
    	// but then among the space of possible binary trees respecting those
    	// addresses, it is kept balanced on average by maintaining a heap ordering
    	// on the ticket: s.ticket <= both s.prev.ticket and s.next.ticket.
    	// https://en.wikipedia.org/wiki/Treap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/KerberosTest.java

            }
    
            Credentials creds = builder.action().getCreds();
            builder.destroy();
    
            KerberosTicket ticket = Krb5Util.credsToTicket(creds);
            System.out.println("Ends " + ticket.getEndTime().getTime());
            return ticket;
        }
    
    
        /**
         * @param principal
         * @return
         * @throws RealmException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  5. internal/s3select/simdj/testdata/parking-citations-10.json.zst

    parking-citations-10.json.zst {"Ticket":1103341116,"IssueData":"2015-12-21T00:00:00","IssueTime":"1251","RPState":"CA","PlateExpiry":"200304","Make":"HOND","BodyStyle":"PA","Color":"GY","Location":"13147 WELBY WAY","Route":"01521","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999} {"Ticket":1103700150,"IssueData":"2015-12-21T00:00:00","IssueTime":"1435","RPState":"CA","PlateExpiry":"201512","Make":"GMC","BodyStyle":"VN","Col...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 693 bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    ```
    [MNG-XXX] - Subject of the JIRA Ticket
     Optional supplemental description.
    ```
    + Make sure you have added the necessary tests (JUnit/[Core IT tests][core-it]) for your changes.
    + Run all the tests with `mvn -Prun-its verify` to assure nothing else was accidentally broken.
    + Submit a pull request to the repository in the Apache organization.
    + Update your JIRA ticket and include a link to the pull request in the ticket.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    const (
    	// ticketKeyLifetime is how long a ticket key remains valid and can be used to
    	// resume a client connection.
    	ticketKeyLifetime = 7 * 24 * time.Hour // 7 days
    
    	// ticketKeyRotation is how often the server should rotate the session ticket key
    	// that is used for new tickets.
    	ticketKeyRotation = 24 * time.Hour
    )
    
    // ticketKey is the internal representation of a session ticket key.
    type ticketKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    		}
    		return k
    	}
    
    	testResumeState("Handshake", false)
    	ticket := getTicket()
    	testResumeState("Resume", true)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("ticket didn't change after resumption")
    	}
    
    	// An old session ticket is replaced with a ticket encrypted with a fresh key.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*time.Hour + time.Minute) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

            ASN1Sequence sequence;
            try {
                try ( ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token)) ) {
                    sequence = ASN1Util.as(ASN1Sequence.class, stream);
                }
            }
            catch ( IOException e ) {
                throw new PACDecodingException("Malformed kerberos ticket", e);
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                if ( derToken.getTagClass() != BERTags.APPLICATION )
                    throw new PACDecodingException("Malformed kerberos ticket");
                stream.close();
            }
            catch ( IOException e ) {
                throw new PACDecodingException("Malformed kerberos ticket", e);
            }
    
            ASN1Sequence sequence;
            try {
                sequence = ASN1Util.as(ASN1Sequence.class, derToken.getBaseObject());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top