Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for cccB (0.05 sec)

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

    func (rb *reorderBuffer) combineHangul(s, i, k int) {
    	b := rb.rune[:]
    	bn := rb.nrune
    	for ; i < bn; i++ {
    		cccB := b[k-1].ccc
    		cccC := b[i].ccc
    		if cccB == 0 {
    			s = k - 1
    		}
    		if s != k-1 && cccB >= cccC {
    			// b[i] is blocked by greater-equal cccX below it
    			b[k] = b[i]
    			k++
    		} else {
    			l := rb.runeAt(s) // also used to compare to hangulBase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) combineHangul(s, i, k int) {
    	b := rb.rune[:]
    	bn := rb.nrune
    	for ; i < bn; i++ {
    		cccB := b[k-1].ccc
    		cccC := b[i].ccc
    		if cccB == 0 {
    			s = k - 1
    		}
    		if s != k-1 && cccB >= cccC {
    			// b[i] is blocked by greater-equal cccX below it
    			b[k] = b[i]
    			k++
    		} else {
    			l := rb.runeAt(s) // also used to compare to hangulBase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  3. src/test/resources/org/codelibs/core/net/ccc.gif

    ccc.gif...
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 67 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            value = FessFunctions.maskEmail("aaa bbb ccc");
            assertEquals("aaa bbb ccc", value);
    
            value = FessFunctions.maskEmail("aaa@bbb.ccc");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("111.aaa@bbb.ccc");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("111 aaa+@bbb.ccc 222");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            }
    
            /**
             * @return Returns the ccc.
             */
            public String getCcc() {
                return ccc;
            }
    
            /**
             * @param ccc
             *            The ccc to set.
             */
            public void setCcc(final String ccc) {
                this.ccc = ccc;
            }
    
        }
    
        /**
         *
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	return int(p.size)
    }
    
    // CCC returns the canonical combining class of the underlying rune.
    func (p Properties) CCC() uint8 {
    	if p.index >= firstCCCZeroExcept {
    		return 0
    	}
    	return ccc[p.ccc]
    }
    
    // LeadCCC returns the CCC of the first rune in the decomposition.
    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/reflectdata/alg_test.go

    	var a [5]string
    	var c [5]string
    
    	for i := 0; i < 5; i++ {
    		a[i] = "aaaa"
    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfStrings64(b *testing.B) {
    	var a [64]string
    	var c [64]string
    
    	for i := 0; i < 64; i++ {
    		a[i] = "aaaa"
    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	return int(p.size)
    }
    
    // CCC returns the canonical combining class of the underlying rune.
    func (p Properties) CCC() uint8 {
    	if p.index >= firstCCCZeroExcept {
    		return 0
    	}
    	return ccc[p.ccc]
    }
    
    // LeadCCC returns the CCC of the first rune in the decomposition.
    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/info.go

    func (c info) cccVal() info {
    	if c&exceptionBit != 0 {
    		return info(exceptions[c>>exceptionShift]) & cccMask
    	}
    	return c & cccMask
    }
    
    func (c info) cccType() info {
    	ccc := c.cccVal()
    	if ccc <= cccZero {
    		return cccZero
    	}
    	return ccc
    }
    
    // TODO: Implement full Unicode breaking algorithm:
    // 1) Implement breaking in separate package.
    // 2) Use the breaker here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/context/x_test.go

    	cancelChild CancelFunc
    }
    
    func (ccc *customCauseContext) Deadline() (deadline time.Time, ok bool) {
    	return
    }
    
    func (ccc *customCauseContext) Done() <-chan struct{} {
    	ccc.mu.Lock()
    	defer ccc.mu.Unlock()
    	return ccc.done
    }
    
    func (ccc *customCauseContext) Err() error {
    	ccc.mu.Lock()
    	defer ccc.mu.Unlock()
    	return ccc.err
    }
    
    func (ccc *customCauseContext) Value(key any) any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top