Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,381 for Ticket (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    // an instruction with a different operation name. As such, this routine checks
    // both forms of a LegacyCall instruction. We only need to check for
    // mlir::TF::LegacyCallOp when the ticket is resolved.
    bool IsLegacyCallInstruction(mlir::Operation* inst);
    }  // namespace tensorflow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/crypto/tls/quic.go

    	// [QUICEvent.SessionState] is set.
    	//
    	// For client connections, this event occurs when the session ticket is selected.
    	// For server connections, this event occurs when receiving the client's session ticket.
    	//
    	// The application may set [QUICEvent.SessionState.EarlyData] to false before the
    	// next call to [QUICConn.NextEvent] to decline 0-RTT even if the session supports it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server.go

    		state.createdAt = hs.sessionState.createdAt
    	}
    	if c.config.WrapSession != nil {
    		var err error
    		m.ticket, err = c.config.WrapSession(c.connectionStateLocked(), state)
    		if err != nil {
    			return err
    		}
    	} else {
    		stateBytes, err := state.Bytes()
    		if err != nil {
    			return err
    		}
    		m.ticket, err = c.config.encryptTicket(stateBytes, c.ticketKeys)
    		if err != nil {
    			return err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_tls13.go

    		if pskSuite == nil || pskSuite.hash != hs.suite.hash {
    			continue
    		}
    
    		// PSK connections don't re-establish client certificates, but carry
    		// them over in the session ticket. Ensure the presence of client certs
    		// in the ticket is consistent with the configured requirements.
    		sessionHasClientCerts := len(sessionState.peerCertificates) != 0
    		needClientCerts := requiresClientCert(c.config.ClientAuth)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PACTest.java

            Kerberos
                ap-req
                    pvno: 5
                    msg-type: krb-ap-req (14)
                    Padding: 0
                    ap-options: 20000000
                    ticket
                        tkt-vno: 5
                        realm: W2K19SINGLE.SPRINGFIELD
                        sname
                            name-type: kRB5-NT-UNKNOWN (0)
                            sname-string: 2 items
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top