Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for default_ (1.81 sec)

  1. src/vendor/golang.org/x/net/idna/tables10.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 125:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 125
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 127 blocks, 8128 entries, 16256 bytes
    // The third block is the zero block.
    var idnaValues = [8128]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 267.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/tables9.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 124:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 124
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 126 blocks, 8064 entries, 16128 bytes
    // The third block is the zero block.
    var idnaValues = [8064]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 263.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 125:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 125
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 127 blocks, 8128 entries, 16256 bytes
    // The third block is the zero block.
    var idnaValues = [8128]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/tables13.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 126:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 126
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 128 blocks, 8192 entries, 16384 bytes
    // The third block is the zero block.
    var idnaValues = [8192]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 284.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/tables15.0.0.go

    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 133:
    		return uint16(idnaValues[n<<6+uint32(b)])
    	default:
    		n -= 133
    		return uint16(idnaSparse.lookup(n, b))
    	}
    }
    
    // idnaValues: 135 blocks, 8640 entries, 17280 bytes
    // The third block is the zero block.
    var idnaValues = [8640]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 297.4K bytes
    - Viewed (0)
Back to top