Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ent (0.01 sec)

  1. internal/lru/lru.go

    	c.mu.Lock()
    	defer c.mu.Unlock()
    	if ent := c.evictList.Back(); ent != nil {
    		return ent.Key, ent.Value, true
    	}
    	return
    }
    
    func (c *LRU[K, V]) KeyValues() map[K]V {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	maps := make(map[K]V)
    	now := time.Now()
    	for ent := c.evictList.Back(); ent != nil; ent = ent.PrevEntry() {
    		if now.After(ent.ExpiresAt) {
    			continue
    		}
    		maps[ent.Key] = ent.Value
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    enebakk.no
    energy
    enf.br
    eng.br
    eng.jo
    eng.pro
    engerdal.no
    engine.aero
    engineer
    engineer.aero
    engineering
    eniwa.hokkaido.jp
    enna.it
    ens.tn
    enscaled.sg
    ent.platform.sh
    enterprisecloud.nu
    enterprises
    entertainment.aero
    epson
    equipment
    equipment.aero
    er.in
    ericsson
    erimo.hokkaido.jp
    erni
    erotica.hu
    erotika.hu
    es
    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. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    enebakk.no
    energy
    enf.br
    eng.br
    eng.jo
    eng.pro
    engerdal.no
    engine.aero
    engineer
    engineer.aero
    engineering
    eniwa.hokkaido.jp
    enna.it
    ens.tn
    enscaled.sg
    ent.platform.sh
    enterprisecloud.nu
    enterprises
    entertainment.aero
    epson
    equipment
    equipment.aero
    er.in
    ericsson
    erimo.hokkaido.jp
    erni
    erotica.hu
    erotika.hu
    es
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  4. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Frédéric VANNIÈRE <******@****.***>
    on-web.fr
    
    // Platform.sh : https://platform.sh
    // Submitted by Nikola Kotur <******@****.***>
    *.upsun.app
    upsunapp.com
    ent.platform.sh
    eu.platform.sh
    us.platform.sh
    *.platformsh.site
    *.tst.site
    
    // Platter: https://platter.dev
    // Submitted by Patrick Flor <******@****.***>
    platter-app.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
Back to top