Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,633 for Ticket (0.44 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    	}
    	if !c.next() || c.src[c.pSrc] == 'j' {
    		return false
    	}
    	if c.src[c.pSrc] != 'J' {
    		c.unreadRune()
    	}
    	return true
    }
    
    // Not part of CLDR, but see https://unicode.org/cldr/trac/ticket/7078.
    func afnlRewrite(c *context) {
    	if c.hasPrefix("'") || c.hasPrefix("’") {
    		c.isMidWord = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"three":                                "3\ufe0f\u20e3",
    	"thumbsdown":                           "\U0001f44e",
    	"thumbsup":                             "\U0001f44d",
    	"ticket":                               "\U0001f3ab",
    	"tickets":                              "\U0001f39f\ufe0f",
    	"tiger":                                "\U0001f42f",
    	"tiger2":                               "\U0001f405",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/runtime/export_test.go

    // Counts returns the counts for the given bucket, subBucket indices.
    // Returns true if the bucket was valid, otherwise returns the counts
    // for the overflow bucket if bucket > 0 or the underflow bucket if
    // bucket < 0, and false.
    func (th *TimeHistogram) Count(bucket, subBucket int) (uint64, bool) {
    	t := (*timeHistogram)(th)
    	if bucket < 0 {
    		return t.underflow.Load(), false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    -half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-trademark:before{content:"\f25c"}.f...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	// or sending NewSessionTicket messages.
    	resumptionSecret []byte
    	echAccepted      bool
    
    	// ticketKeys is the set of active session ticket keys for this
    	// connection. The first one is used to encrypt new tickets and
    	// all are tried to decrypt tickets.
    	ticketKeys []ticketKey
    
    	// clientFinishedIsFirst is true if the client sent the first Finished
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			continue // these are unexported fields that are handled separately
    		default:
    			t.Errorf("all fields must be accounted for, but saw unknown field %q", fn)
    		}
    	}
    	// Set the unexported fields related to session ticket keys, which are copied with Clone().
    	c1.autoSessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    	c1.sessionTicketKeys = []ticketKey{c1.ticketKeyFromBytes(c1.SessionTicketKey)}
    
    	c2 := c1.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/main/webapp/css/font-awesome.min.css

    meter-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-t...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	// For channels, waitlink is only accessed by g.
    	// For semaphores, all fields (including the ones above)
    	// are only accessed when holding a semaRoot lock.
    
    	acquiretime int64
    	releasetime int64
    	ticket      uint32
    
    	// isSelect indicates g is participating in a select, so
    	// g.selectDone must be CAS'd to win the wake-up race.
    	isSelect bool
    
    	// success indicates whether communication over channel c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

     *  Fix: Don't crash if the system default authenticator is null.
     *  Fix: Don't crash generating elliptic curve certificates on Android.
     *  Fix: Don't crash doing platform detection on RoboVM.
     *  Fix: Don't leak socket connections when web socket upgrades fail.
    
    
    ## Version 3.11.0
    
    _2018-07-12_
    
     *  **OkHttp's new okhttp-tls submodule tames HTTPS and TLS.**
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/font-awesome.min.css

    meter-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-t...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top