Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,633 for Ticket (0.22 sec)

  1. src/main/java/jcifs/smb/JAASAuthenticator.java

    import jcifs.CIFSException;
    
    
    /**
     * JAAS kerberos authenticator
     * 
     * Either configure JAAS for credential caching or reuse a single instance of this authenticator -otherwise you won't
     * get proper ticket caching.
     * 
     * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_tls13.go

    	}
    
    	return nil
    }
    
    func (c *Conn) handleNewSessionTicket(msg *newSessionTicketMsgTLS13) error {
    	if !c.isClient {
    		c.sendAlert(alertUnexpectedMessage)
    		return errors.New("tls: received new session ticket from a client")
    	}
    
    	if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
    		return nil
    	}
    
    	// See RFC 8446, Section 4.6.1.
    	if msg.lifetime == 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    			return false
    		}
    	}
    	return readUint16LengthPrefixed(&s, &m.signature) && s.Empty()
    }
    
    type newSessionTicketMsg struct {
    	ticket []byte
    }
    
    func (m *newSessionTicketMsg) marshal() ([]byte, error) {
    	// See RFC 5077, Section 3.3.
    	ticketLen := len(m.ticket)
    	length := 2 + 4 + ticketLen
    	x := make([]byte, 4+length)
    	x[0] = typeNewSessionTicket
    	x[1] = uint8(length >> 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/language.go

    						// code for Norwegian, to the dominant variant "nb". This
    						// change is currently under consideration for CLDR as well.
    						// See https://unicode.org/cldr/trac/ticket/2698 and also
    						// https://unicode.org/cldr/trac/ticket/1790 for some of the
    						// practical implications. TODO: this check could be removed
    						// if CLDR adopts this change.
    						if c&CLDR == 0 || t.LangID != _nb {
    							changed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. docs/en/data/external_links.yml

    -fake-certificate title: How to Create A Fake Certificate Authority And Generate TLS Certs for FastAPI - author: Ben Gamble author_link: https://uk.linkedin.com/in/bengamble7 link: https://ably.com/blog/realtime-ticket-booking-solution-kafka-fastapi-ably title: Building a realtime ticket booking solution with Kafka, FastAPI, and Ably - author: Shahriyar(Shako) Rzayev author_link: https://www.linkedin.com/in/shahriyar-rzayev/ link: https://www.azepug.az/posts/fastapi/#building-simple-e-commerce-w...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. src/crypto/tls/bogo_shim_test.go

    	_                       = flag.Bool("enable-early-data", false, "")
    	_                       = flag.Bool("on-resume-expect-accept-early-data", false, "")
    	_                       = flag.Bool("expect-ticket-supports-early-data", false, "")
    	onResumeShimWritesFirst = flag.Bool("on-resume-shim-writes-first", false, "")
    
    	advertiseALPN = flag.String("advertise-alpn", "", "")
    	expectALPN    = flag.String("expect-alpn", "", "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages_test.go

    	m := &finishedMsg{}
    	m.verifyData = randomBytes(12, rand)
    	return reflect.ValueOf(m)
    }
    
    func (*newSessionTicketMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &newSessionTicketMsg{}
    	m.ticket = randomBytes(rand.Intn(4), rand)
    	return reflect.ValueOf(m)
    }
    
    var sessionTestCerts []*x509.Certificate
    
    func init() {
    	cert, err := x509.ParseCertificate(testRSACertificate)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

     * permits per second:
     *
     * <pre>{@code
     * final RateLimiter rateLimiter = RateLimiter.create(5000.0); // rate = 5000 permits per second
     * void submitPacket(byte[] packet) {
     *   rateLimiter.acquire(packet.length);
     *   networkService.send(packet);
     * }
     * }</pre>
     *
     * <p>It is important to note that the number of permits requested <i>never</i> affects the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. src/crypto/tls/bogo_config.json

            "EchoTLS13CompatibilitySessionID": "TODO reject compat session ID",
            "*Client-P-224*": "no P-224 support",
            "*Server-P-224*": "no P-224 support",
            "CurveID-Resume*": "unexposed curveID is not stored in the ticket yet",
            "CheckLeafCurve": "TODO: first pass, this should be fixed",
            "DisabledCurve-HelloRetryRequest-TLS13": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/RateLimiter.java

     * permits per second:
     *
     * <pre>{@code
     * final RateLimiter rateLimiter = RateLimiter.create(5000.0); // rate = 5000 permits per second
     * void submitPacket(byte[] packet) {
     *   rateLimiter.acquire(packet.length);
     *   networkService.send(packet);
     * }
     * }</pre>
     *
     * <p>It is important to note that the number of permits requested <i>never</i> affects the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top