Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for startm (0.13 sec)

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

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return idnaValues[c0]
    	}
    	i := idnaIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 270.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/tables10.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return idnaValues[c0]
    	}
    	i := idnaIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 267.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/tables9.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return idnaValues[c0]
    	}
    	i := idnaIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 263.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return idnaValues[c0]
    	}
    	i := idnaIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/tables13.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return idnaValues[c0]
    	}
    	i := idnaIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 284.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/tables15.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return idnaValues[c0]
    	}
    	i := idnaIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 297.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    						"subRoot": {
    							Type: "string",
    							XValidations: apiextensions.ValidationRules{
    								{
    									Rule:    "self.startsWith('s')",
    									Message: "subRoot should start with 's'.",
    								},
    								{
    									Rule:    "self.endsWith('s')",
    									Message: "subRoot should end with 's'.",
    								},
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top