Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 139 for myrunes (0.31 sec)

  1. src/regexp/backtrack.go

    				pc = inst.Arg
    				goto CheckAndLoop
    			} else {
    				b.push(re, pc, pos, true)
    				pc = inst.Out
    				goto CheckAndLoop
    			}
    
    		case syntax.InstAltMatch:
    			// One opcode consumes runes; the other leads to match.
    			switch re.prog.Inst[inst.Out].Op {
    			case syntax.InstRune, syntax.InstRune1, syntax.InstRuneAny, syntax.InstRuneAnyNotNL:
    				// inst.Arg is the match.
    				b.push(re, inst.Arg, pos, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    	// letter is not an ignorable and may modify the result.
    	wasMid := false
    	for i := 0; i < maxIgnorable+1; i++ {
    		if !c.next() {
    			return false
    		}
    		if !c.info.isCaseIgnorable() {
    			// All Midword runes are also case ignorable, so we are
    			// guaranteed to have a letter or word break here. As we are
    			// unreading the run, there is no need to unset c.isMidWord;
    			// the title caser will handle this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        val capacityWithoutIt = addressState.concurrentCallCapacity - connection.allocationLimit
        return capacityWithoutIt >= addressState.policy.minimumConcurrentCalls
      }
    
      /**
       * Prunes any leaked calls and then returns the number of remaining live calls on [connection].
       * Calls are leaked if the connection is tracking them but the application code has abandoned
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/prune.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/proxy"
    )
    
    var (
    	// ClusterResources are resource types the operator prunes, ordered by which types should be deleted, first to last.
    	ClusterResources = []schema.GroupVersionKind{
    		{Group: "admissionregistration.k8s.io", Version: "v1", Kind: name.MutatingWebhookConfigurationStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			in.Error("mod files must use // comments (not /* */ comments)")
    		}
    		in.readRune()
    	}
    	in.endToken(_IDENT)
    }
    
    // isIdent reports whether c is an identifier rune.
    // We treat most printable runes as identifier runes, except for a handful of
    // ASCII punctuation characters.
    func isIdent(c int) bool {
    	switch r := rune(c); r {
    	case ' ', '(', ')', '[', ']', '{', '}', ',':
    		return false
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    // 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
    // bracket for brackets (open or close) or 0 for runes that are not brackets.
    func resolvePairedBrackets(s *isolatingRunSequence) {
    	p := bracketPairer{
    		sos:              s.sos,
    		openers:          list.New(),
    		codesIsolatedRun: s.types,
    		indexes:          s.indexes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	if c.errStart > 0 {
    		for i := 1; i < c.errStart; i++ {
    			c.link[i].p, c.link[i].n = 0, 0
    		}
    		err, c.errStart, c.err = c.err, 0, nil
    	}
    	return dstL.n, srcL.p, err
    }
    
    // Deprecated: Use runes.Remove instead.
    func RemoveFunc(f func(r rune) bool) Transformer {
    	return removeF(f)
    }
    
    type removeF func(r rune) bool
    
    func (removeF) Reset() {}
    
    // Transform implements the Transformer interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/go/constant/value.go

    	s := strconv.Quote(x.string())
    	if utf8.RuneCountInString(s) > maxLen {
    		// The string without the enclosing quotes is greater than maxLen-2 runes
    		// long. Remove the last 3 runes (including the closing '"') by keeping
    		// only the first maxLen-3 runes; then add "...".
    		i := 0
    		for n := 0; n < maxLen-3; n++ {
    			_, size := utf8.DecodeRuneInString(s[i:])
    			i += size
    		}
    		s = s[:i] + "..."
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/transform/transform.go

    	if c.errStart > 0 {
    		for i := 1; i < c.errStart; i++ {
    			c.link[i].p, c.link[i].n = 0, 0
    		}
    		err, c.errStart, c.err = c.err, 0, nil
    	}
    	return dstL.n, srcL.p, err
    }
    
    // Deprecated: Use runes.Remove instead.
    func RemoveFunc(f func(r rune) bool) Transformer {
    	return removeF(f)
    }
    
    type removeF func(r rune) bool
    
    func (removeF) Reset() {}
    
    // Transform implements the Transformer interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  10. src/fmt/example_test.go

    	// after the imaginary part.
    	point := 110.7 + 22.5i
    	fmt.Printf("%v %g %.2f %.2e\n", point, point, point, point)
    	// Result: (110.7+22.5i) (110.7+22.5i) (110.70+22.50i) (1.11e+02+2.25e+01i)
    
    	// Runes are integers but when printed with %c show the character with that
    	// Unicode value. The %q verb shows them as quoted characters, %U as a
    	// hex Unicode code point, and %#U as both a code point and a quoted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
Back to top