Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for myrunes (0.14 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    		if prop.IsBracket() {
    			inRunes[i] = prop.reverseBracket(r)
    		}
    	}
    
    	for i, j := 0, len(inRunes)-1; i < j; i, j = i+1, j-1 {
    		inRunes[i], inRunes[j] = inRunes[j], inRunes[i]
    	}
    	copy(ret[len(out):], string(inRunes))
    
    	return ret
    }
    
    // ReverseString reverses the order of characters in s and returns a new string.
    // Modifiers will still follow the runes they modify. Brackets are replaced with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    		partLen = c.Rand.Intn(63) + 1 // len is [1, 63]
    	}
    
    	runes := make([]rune, partLen)
    	if partLen == 0 {
    		return string(runes)
    	}
    
    	runes[0] = validStartEnd[c.Rand.Intn(len(validStartEnd))].choose(c.Rand)
    	for i := range runes[1:] {
    		runes[i+1] = validMiddle[c.Rand.Intn(len(validMiddle))].choose(c.Rand)
    	}
    	runes[len(runes)-1] = validStartEnd[c.Rand.Intn(len(validStartEnd))].choose(c.Rand)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/regexp/onepass.go

    			}
    			instQueue.insert(inst.Out)
    			runes := []rune{}
    			// expand case-folded runes
    			if syntax.Flags(inst.Arg)&syntax.FoldCase != 0 {
    				r0 := inst.Rune[0]
    				runes = append(runes, r0, r0)
    				for r1 := unicode.SimpleFold(r0); r1 != r0; r1 = unicode.SimpleFold(r1) {
    					runes = append(runes, r1, r1)
    				}
    				slices.Sort(runes)
    			} else {
    				runes = append(runes, inst.Rune[0], inst.Rune[0])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

            class MyRules extends RuleSource {
                @ComponentType
                public void register(TypeBuilder<UnmanagedComponent> builder) {
                    builder.defaultImplementation(DefaultUnmanagedComponent)
                }
            }
            apply plugin: MyRules
            model {
                components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. src/unicode/utf8/utf8_test.go

    		runes := []rune(ts)
    		if n := len(runes); n != count {
    			t.Errorf("%q: []rune() has length %d; got %d from RuneCountInString", ts, n, count)
    			break
    		}
    		i := 0
    		for _, r := range ts {
    			if r != runes[i] {
    				t.Errorf("%q[%d]: expected %c (%U); got %c (%U)", ts, i, runes[i], runes[i], r, r)
    			}
    			i++
    		}
    	}
    }
    
    var invalidSequenceTests = []string{
    	"\xed\xa0\x80\x80", // surrogate min
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/term/terminal.go

    		}
    		t.historyIndex++
    		runes := []rune(entry)
    		t.setLine(runes, len(runes))
    	case keyDown:
    		switch t.historyIndex {
    		case -1:
    			return
    		case 0:
    			runes := []rune(t.historyPending)
    			t.setLine(runes, len(runes))
    			t.historyIndex--
    		default:
    			entry, ok := t.history.NthPreviousEntry(t.historyIndex - 1)
    			if ok {
    				t.historyIndex--
    				runes := []rune(entry)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

        def "can define subtype of `ApplicationBinarySpec`"() {
            buildFile << """
    @Managed
    interface TheApp extends ApplicationSpec {}
    @Managed
    interface TheAppBinary extends ApplicationBinarySpec {}
    
    class MyRules extends RuleSource {
    
        @ComponentType
        void registerComponent(TypeBuilder<TheApp> builder) {}
    
        @ComponentType
        void registerBinary(TypeBuilder<TheAppBinary> builder) {}
    
        @ComponentBinaries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		return ssOverflow
    	}
    	// The Stream-Safe Text Processing prescribes that the counting can stop
    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    	// be a non-starter. Note that it always hold that if nLead > 0 then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/reporter.go

    	tryLedgerPut(r.ledger, res)
    	myRes := status.ResourceFromModelConfig(res)
    	if myRes == (status.Resource{}) {
    		scope.Errorf("Unable to locate schema for %v, will not update status.", res)
    		return
    	}
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	r.inProgressResources[myRes.ToModelKey()] = &inProgressEntry{
    		Resource:            myRes,
    		completedIterations: 0,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		return ssOverflow
    	}
    	// The Stream-Safe Text Processing prescribes that the counting can stop
    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    	// be a non-starter. Note that it always hold that if nLead > 0 then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
Back to top