Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 92 for cccB (0.06 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    			lastSegStart = i
    		case ssOverflow:
    			return lastSegStart, false
    		case ssSuccess:
    			if lastCC > info.ccc {
    				return lastSegStart, false
    			}
    		}
    		if f.composing {
    			if !info.isYesC() {
    				break
    			}
    		} else {
    			if !info.isYesD() {
    				break
    			}
    		}
    		lastCC = info.ccc
    		i += int(info.size)
    	}
    	if i == n {
    		if !atEOF {
    			n = lastSegStart
    		}
    		return n, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    			lastSegStart = i
    		case ssOverflow:
    			return lastSegStart, false
    		case ssSuccess:
    			if lastCC > info.ccc {
    				return lastSegStart, false
    			}
    		}
    		if f.composing {
    			if !info.isYesC() {
    				break
    			}
    		} else {
    			if !info.isYesD() {
    				break
    			}
    		}
    		lastCC = info.ccc
    		i += int(info.size)
    	}
    	if i == n {
    		if !atEOF {
    			n = lastSegStart
    		}
    		return n, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. pkg/kubelet/network/dns/dns_test.go

    		},
    
    		{
    			desc:         "valid: 7 search paths",
    			hostNames:    []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB", "CCC", "DDD"},
    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB", "CCC", "DDD"},
    			events:       []string{},
    		},
    
    		{
    			desc:         "valid: 32 search paths",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("aaa")).isNull()
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("ggg")).isNull()
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("ccc")).isNull()
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("eee")).isNull()
      }
    
      @Test fun exceptionRule() {
        val exception =
          Buffer()
            .writeUtf8("my.square.jp\n")
        val buffer =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/regexp/testdata/basic.dat

    E	abaa|abbaa|abbbaa|abbbbaa	ababbabbbabbbabbbbabbbbaa	(18,25)
    E	abaa|abbaa|abbbaa|abbbbaa	ababbabbbabbbabbbbabaa	(18,22)
    E	aaac|aabc|abac|abbc|baac|babc|bbac|bbbc	baaabbbabac	(7,11)
    BE$	.*			\x01\xff	(0,2)
    E	aaaa|bbbb|cccc|ddddd|eeeeee|fffffff|gggg|hhhh|iiiii|jjjjj|kkkkk|llll		XaaaXbbbXcccXdddXeeeXfffXgggXhhhXiiiXjjjXkkkXlllXcbaXaaaa	(53,57)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  6. tests/migrate_test.go

    		if !DB.Migrator().HasTable(m) {
    			t.Fatalf("Failed to create table for %#v", m)
    		}
    	}
    
    	DB.Scopes(func(db *gorm.DB) *gorm.DB {
    		return db.Table("ccc")
    	}).Migrator().CreateTable(&Company{})
    
    	if !DB.Migrator().HasTable("ccc") {
    		t.Errorf("failed to create table ccc")
    	}
    
    	for _, indexes := range [][2]string{
    		{"user_speaks", "fk_user_speaks_user"},
    		{"user_speaks", "fk_user_speaks_language"},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

        width:315px;
        top:0;
        left:0;
        height:30%;
        border-right:6px solid #ccc;
        border-bottom:6px solid #ccc;
    }
    .leftBottom {
        position:relative;
        float:left;
        width:315px;
        bottom:0;
        left:0;
        height:70%;
        border-right:6px solid #ccc;
        border-top:1px solid #000;
    }
    .rightContainer {
        position:absolute;
        left:320px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. src/strings/replace_test.go

    		testCase{inc, "brad", "csbe"},
    		testCase{inc, "\x00\xff", "\x01\x00"},
    		testCase{inc, "", ""},
    
    		testCase{NewReplacer("a", "1", "a", "2"), "brad", "br1d"},
    	)
    
    	// repeat maps "a"->"a", "b"->"bb", "c"->"ccc", ...
    	s = nil
    	for i := 0; i < 256; i++ {
    		n := i + 1 - 'a'
    		if n < 1 {
    			n = 1
    		}
    		s = append(s, str(byte(i)), Repeat(str(byte(i)), n))
    	}
    	repeat := NewReplacer(s...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  9. src/text/tabwriter/tabwriter.go

    // forms a cell but that cell is not part of an aligned column.
    // For instance, in this example (where | stands for a horizontal tab):
    //
    //	aaaa|bbb|d
    //	aa  |b  |dd
    //	a   |
    //	aa  |cccc|eee
    //
    // the b and c are in distinct columns (the b column is not contiguous
    // all the way). The d and e are not in a column at all (there's no
    // terminating tab, nor would the column be contiguous).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			pod: st.MakePod().Name("anaffi-antiaffiti").PodAffinityExists("aaa", "hostname", st.PodAffinityWithRequiredReq).
    				PodAffinityExists("ccc", "hostname", st.PodAffinityWithRequiredReq).
    				PodAntiAffinityExists("aaa", "hostname", st.PodAntiAffinityWithRequiredReq).
    				PodAntiAffinityExists("ccc", "hostname", st.PodAntiAffinityWithRequiredReq).Obj(),
    			wantAffinityPodsMap: make(topologyToMatchedTermCount),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top