Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 9,054 for runN (0.12 sec)

  1. src/mime/grammar.go

    package mime
    
    import (
    	"strings"
    )
    
    // isTSpecial reports whether rune is in 'tspecials' as defined by RFC
    // 1521 and RFC 2045.
    func isTSpecial(r rune) bool {
    	return strings.ContainsRune(`()<>@,;:\"/[]?=`, r)
    }
    
    // isTokenChar reports whether rune is in 'token' as defined by RFC
    // 1521 and RFC 2045.
    func isTokenChar(r rune) bool {
    	// token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
    	//             or tspecials>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 01:06:05 UTC 2016
    - 828 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    	return c
    }
    
    // IsBracket reports whether the rune is a bracket.
    func (p Properties) IsBracket() bool { return p.entry&0xF0 != 0 }
    
    // IsOpeningBracket reports whether the rune is an opening bracket.
    // IsBracket must return true.
    func (p Properties) IsOpeningBracket() bool { return p.entry&openMask != 0 }
    
    // TODO: find a better API and expose.
    func (p Properties) reverseBracket(r rune) rune {
    	return xorMasks[p.entry>>xorMaskShift] ^ r
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  3. src/internal/types/testdata/spec/conversions.go

    func _[T ~string](x []rune) T                           { return T(x) }
    func _[X ~[]byte, T ~string](x X) T                     { return T(x) }
    func _[X ~[]rune, T ~string](x X) T                     { return T(x) }
    func _[X Integer | ~[]byte | ~[]rune, T ~string](x X) T { return T(x) }
    func _[X Integer | ~[]byte | ~[]rune, T ~*string](x X) T {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/strings/strings.go

    	// the closure once per rune.
    	prev := ' '
    	return Map(
    		func(r rune) rune {
    			if isSeparator(prev) {
    				prev = r
    				return unicode.ToTitle(r)
    			}
    			prev = r
    			return r
    		},
    		s)
    }
    
    // TrimLeftFunc returns a slice of the string s with all leading
    // Unicode code points c satisfying f(c) removed.
    func TrimLeftFunc(s string, f func(rune) bool) string {
    	i := indexFunc(s, f, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. test/convlit.go

    // explicit conversion of string is okay
    var _ = []rune("abc")
    var _ = []byte("abc")
    
    // implicit is not
    var _ []int = "abc"  // ERROR "cannot use|incompatible|invalid|cannot convert"
    var _ []byte = "abc" // ERROR "cannot use|incompatible|invalid|cannot convert"
    
    // named string is okay
    type Tstring string
    
    var ss Tstring = "abc"
    var _ = []rune(ss)
    var _ = []byte(ss)
    
    // implicit is still not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/dry-run-mix-out.yaml

    Yangmin Zhu <******@****.***> 1617651067 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 19:31:07 UTC 2021
    - 847 bytes
    - Viewed (0)
  7. docs/site-replication/run-multi-site-ldap.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. test/typeparam/builtins.go

    type M2 interface {
    	map[string]int | map[string]float64
    }
    type M3 interface{ map[string]int | map[rune]int }
    type M4[K comparable, V any] interface{ map[K]V | map[rune]V }
    
    func g1[T M1](m T) {
    	delete(m, "foo")
    }
    
    func g2[T M2](m T) {
    	delete(m, "foo")
    }
    
    func g3[T M4[rune, V], V any](m T) {
    	delete(m, 'k')
    }
    
    // make
    
    func m1[
    	S1 interface{ []int },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/runtime/string.go

    	}
    	copy(b, s)
    	return b
    }
    
    func stringtoslicerune(buf *[tmpStringBufSize]rune, s string) []rune {
    	// two passes.
    	// unlike slicerunetostring, no race because strings are immutable.
    	n := 0
    	for range s {
    		n++
    	}
    
    	var a []rune
    	if buf != nil && n <= len(buf) {
    		*buf = [tmpStringBufSize]rune{}
    		a = buf[:n]
    	} else {
    		a = rawruneslice(n)
    	}
    
    	n = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/tcp/dry-run-mix-out.yaml

    Yangmin Zhu <******@****.***> 1617651067 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 19:31:07 UTC 2021
    - 770 bytes
    - Viewed (0)
Back to top