Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,236 for run1 (0.04 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/regexp/syntax/parse.go

    	p.numRunes += len(re.Rune)
    	if re.Op == OpCharClass && len(re.Rune) == 2 && re.Rune[0] == re.Rune[1] {
    		// Single rune.
    		if p.maybeConcat(re.Rune[0], p.flags&^FoldCase) {
    			return nil
    		}
    		re.Op = OpLiteral
    		re.Rune = re.Rune[:1]
    		re.Flags = p.flags &^ FoldCase
    	} else if re.Op == OpCharClass && len(re.Rune) == 4 &&
    		re.Rune[0] == re.Rune[1] && re.Rune[2] == re.Rune[3] &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/term/terminal.go

    		}
    	}
    
    	return utf8.RuneError, b
    }
    
    // queue appends data to the end of t.outBuf
    func (t *Terminal) queue(data []rune) {
    	t.outBuf = append(t.outBuf, []byte(string(data))...)
    }
    
    var space = []rune{' '}
    
    func isPrintable(key rune) bool {
    	isInSurrogateArea := key >= 0xd800 && key <= 0xdbff
    	return key >= 32 && !isInSurrogateArea
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/config.go

    	}
    	return nil, genericclioptions.NoCompatiblePrinterError{OutputFormat: &outputFormat, AllowedFormats: []string{output.TextOutput}}
    }
    
    // Run runs the images command and writes the result to the io.Writer passed in
    func (i *ImagesList) Run(out io.Writer, printer output.Printer) error {
    	imgs := images.GetControlPlaneImages(&i.cfg.ClusterConfiguration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/security/authz/builder/testdata/tcp/dry-run-mix-in.yaml

      namespace: foo
      annotations:
        "istio.io/dry-run": "true"
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      action: ALLOW
      rules:
        - to:
            - operation:
                ports: ["80"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-2
      namespace: foo
      annotations:
        "istio.io/dry-run": "false"
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 625 bytes
    - Viewed (0)
Back to top