Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 117 for runExe (0.24 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		{`package c1b; var _ = int(0)`, `int(0)`, `int`, `0`},
    		{`package c1c; type T int; var _ = T(0)`, `T(0)`, `c1c.T`, `0`},
    
    		{`package c2a; var _ = rune('A')`, `'A'`, `rune`, `65`},
    		{`package c2b; var _ = rune('A')`, `rune('A')`, `rune`, `65`},
    		{`package c2c; type T rune; var _ = T('A')`, `T('A')`, `c2c.T`, `65`},
    
    		{`package c3a; var _ = float32(0.)`, `0.`, `float32`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    // The first element of the path must be an LDH domain name, at least for now.
    // To avoid case ambiguity, the domain name must be entirely lower case.
    func firstPathOK(r rune) bool {
    	return r == '-' || r == '.' ||
    		'0' <= r && r <= '9' ||
    		'a' <= r && r <= 'z'
    }
    
    // modPathOK reports whether r can appear in a module path element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/predicates.go

    	if x == y {
    		return true
    	}
    
    	if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
    		return true
    	}
    
    	switch x := x.(type) {
    	case *Basic:
    		// Basic types are singletons except for the rune and byte
    		// aliases, thus we cannot solely rely on the x == y check
    		// above. See also comment in TypeName.IsAlias.
    		if y, ok := y.(*Basic); ok {
    			return x.kind == y.kind
    		}
    
    	case *Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		{`package c1b; var _ = int(0)`, `int(0)`, `int`, `0`},
    		{`package c1c; type T int; var _ = T(0)`, `T(0)`, `c1c.T`, `0`},
    
    		{`package c2a; var _ = rune('A')`, `'A'`, `rune`, `65`},
    		{`package c2b; var _ = rune('A')`, `rune('A')`, `rune`, `65`},
    		{`package c2c; type T rune; var _ = T('A')`, `T('A')`, `c2c.T`, `65`},
    
    		{`package c3a; var _ = float32(0.)`, `0.`, `float32`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	var args []string
    	arg := make([]rune, len(s))
    	escaped := false
    	quoted := false
    	quote := '\x00'
    	i := 0
    	for _, rune := range s {
    		switch {
    		case escaped:
    			escaped = false
    		case rune == '\\':
    			escaped = true
    			continue
    		case quote != '\x00':
    			if rune == quote {
    				quote = '\x00'
    				continue
    			}
    		case rune == '"' || rune == '\'':
    			quoted = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    	}
    
    	return &emphPlain{Plain: Plain{s[i:j]}, canOpen: canOpen, canClose: canClose, n: j - i}, i, j, true
    }
    
    func isUnicodeSpace(r rune) bool {
    	if r < 0x80 {
    		return r == ' ' || r == '\t' || r == '\f' || r == '\n'
    	}
    	return unicode.In(r, unicode.Zs)
    }
    
    func isUnicodePunct(r rune) bool {
    	if r < 0x80 {
    		return isPunct(byte(r))
    	}
    	return unicode.In(r, unicode.Punct)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. istioctl/pkg/proxystatus/proxystatus.go

      # (Select a specific control plane in an in-cluster canary Istio configuration.)
      istioctl ps --xds-label istio.io/rev=default
    `,
    		Aliases: []string{"ps"},
    		RunE: func(c *cobra.Command, args []string) error {
    			kubeClient, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return err
    			}
    			multiXdsOpts.MessageWriter = c.OutOrStdout()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/encoding/json/decode.go

    		}
    		return n
    	}
    }
    
    // getu4 decodes \uXXXX from the beginning of s, returning the hex value,
    // or it returns -1.
    func getu4(s []byte) rune {
    	if len(s) < 6 || s[0] != '\\' || s[1] != 'u' {
    		return -1
    	}
    	var r rune
    	for _, c := range s[2:6] {
    		switch {
    		case '0' <= c && c <= '9':
    			c = c - '0'
    		case 'a' <= c && c <= 'f':
    			c = c - 'a' + 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. doc/go_spec.html

    a string that is the concatenation of the individual rune values
    converted to strings.
    
    <pre>
    string([]rune{0x767d, 0x9d6c, 0x7fd4})   // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    string([]rune{})                         // ""
    string([]rune(nil))                      // ""
    
    type runes []rune
    string(runes{0x767d, 0x9d6c, 0x7fd4})    // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    
    type myRune rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. src/reflect/value.go

    func cvtIntString(v Value, t Type) Value {
    	s := "\uFFFD"
    	if x := v.Int(); int64(rune(x)) == x {
    		s = string(rune(x))
    	}
    	return makeString(v.flag.ro(), s, t)
    }
    
    // convertOp: uintXX -> string
    func cvtUintString(v Value, t Type) Value {
    	s := "\uFFFD"
    	if x := v.Uint(); uint64(rune(x)) == x {
    		s = string(rune(x))
    	}
    	return makeString(v.flag.ro(), s, t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top