Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 505 for runExe (0.64 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning.go

    		return
    	}
    	r.recorded[text] = true
    	r.ordered = append(r.ordered, recordedWarning{agent: agent, text: text})
    
    	// truncate on a rune boundary, if needed
    	textRuneLength := utf8.RuneCountInString(text)
    	if r.truncating && textRuneLength > truncateItemRunes {
    		text = string([]rune(text)[:truncateItemRunes])
    		textRuneLength = truncateItemRunes
    	}
    
    	// compute the header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  2. test/fixedbugs/bug460.dir/a.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type Foo struct {
    	int
    	int8
    	error
    	rune
    	byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 221 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // A Paragraph holds a single Paragraph for Bidi processing.
    type Paragraph struct {
    	p          []byte
    	o          Ordering
    	opts       []Option
    	types      []Class
    	pairTypes  []bracketType
    	pairValues []rune
    	runes      []rune
    	options    options
    }
    
    // Initialize the p.pairTypes, p.pairValues and p.types from the input previously
    // set by p.SetBytes() or p.SetString(). Also limit the input up to (and including) a paragraph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    // resolvePairedBrackets runs the paired bracket part of the UBA algorithm.
    //
    // For each rune, it takes the indexes into the original string, the class the
    // bracket type (in pairTypes) and the bracket identifier (pairValues). It also
    // takes the direction type for the start-of-sentence and the embedding level.
    //
    // The identifiers for bracket types are the rune of the canonicalized opening
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  5. src/html/template/js.go

    	// Make sure that json.Marshal escapes codepoints U+2028 & U+2029
    	// so it falls within the subset of JSON which is valid JS.
    	for i := 0; i < len(b); {
    		rune, n := utf8.DecodeRune(b[i:])
    		repl := ""
    		if rune == 0x2028 {
    			repl = `\u2028`
    		} else if rune == 0x2029 {
    			repl = `\u2029`
    		}
    		if repl != "" {
    			buf.Write(b[written:i])
    			buf.WriteString(repl)
    			written = i + n
    		}
    		i += n
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. test/fixedbugs/bug169.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 00:40:38 UTC 2020
    - 225 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			r.Raw = bytes
    		},
    	}
    }
    
    // taken from gofuzz internals for RandString
    type charRange struct {
    	first, last rune
    }
    
    func (c *charRange) choose(r *rand.Rand) rune {
    	count := int64(c.last - c.first + 1)
    	ch := c.first + rune(r.Int63n(count))
    
    	return ch
    }
    
    // randomLabelPart produces a valid random label value or name-part
    // of a label key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/path/match.go

    	failed := false
    	for len(chunk) > 0 {
    		if !failed && len(s) == 0 {
    			failed = true
    		}
    		switch chunk[0] {
    		case '[':
    			// character class
    			var r rune
    			if !failed {
    				var n int
    				r, n = utf8.DecodeRuneInString(s)
    				s = s[n:]
    			}
    			chunk = chunk[1:]
    			// possibly negated
    			negated := false
    			if len(chunk) > 0 && chunk[0] == '^' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. operator/pkg/util/path.go

    		return "", false
    	}
    	return pe[1 : len(pe)-1], true
    }
    
    // splitEscaped splits a string using the rune r as a separator. It does not split on r if it's prefixed by \.
    func splitEscaped(s string, r rune) []string {
    	var prev rune
    	if len(s) == 0 {
    		return []string{}
    	}
    	prevIdx := 0
    	var out []string
    	for i, c := range s {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    }
    
    func lastBoundary(fd *formInfo, b []byte) int {
    	i := len(b)
    	info, p := lastRuneStart(fd, b)
    	if p == -1 {
    		return -1
    	}
    	if info.size == 0 { // ends with incomplete rune
    		if p == 0 { // starts with incomplete rune
    			return -1
    		}
    		i = p
    		info, p = lastRuneStart(fd, b[:i])
    		if p == -1 { // incomplete UTF-8 encoding or non-starter bytes without a starter
    			return i
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
Back to top