Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for ccc1 (0.03 sec)

  1. 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)
  2. 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)
  3. src/crypto/aes/gcm_arm64.s

    	VPMULL	POLY.D1, ACC0.D1, T0.Q1          \
    	VEOR	T0.B16, ACC1.B16, ACC1.B16       \
    	VEXT	$8, ACC1.B16, ACC1.B16, ACC1.B16 \
    	VEOR	ACC1.B16, ACC0.B16, ACC0.B16     \
    
    // func gcmAesFinish(productTable *[256]byte, tagMask, T *[16]byte, pLen, dLen uint64)
    TEXT ·gcmAesFinish(SB),NOSPLIT,$0
    #define pTbl R0
    #define tMsk R1
    #define tPtr R2
    #define plen R3
    #define dlen R4
    
    	MOVD	$0xC2, R1
    	LSL	$56, R1
    	MOVD	$1, R0
    	VMOV	R1, POLY.D[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            assertEquals("(aaa OR bbb)", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb" })));
            assertEquals("(aaa OR bbb) ccc", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc" })));
            assertEquals("(aaa OR bbb) (ccc OR ddd)", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc ddd" })));
            assertEquals("(aaa OR bbb)", getAsQuery("111", Collections.singletonMap(k, new String[] { "aaa bbb" })));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/sync/mutex_test.go

    	// As a matter of fact, this benchmark still triggers some spinning in the mutex.
    	var m Mutex
    	var acc0, acc1 uint64
    	b.SetParallelism(4)
    	b.RunParallel(func(pb *testing.PB) {
    		c := make(chan bool)
    		var data [4 << 10]uint64
    		for i := 0; pb.Next(); i++ {
    			if i%4 == 0 {
    				m.Lock()
    				acc0 -= 100
    				acc1 += 100
    				m.Unlock()
    			} else {
    				for i := 0; i < len(data); i += 4 {
    					data[i]++
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 21:25:35 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/ParamMapTest.java

            map.put("aaa_bbb_ccc", "333");
            map.put("ccc.ddd", "444");
            return new ParamMap<>(map);
        }
    
        private ParamMap<Object, Object> createCamelMap() {
            final Map<Object, Object> map = new HashMap<>();
            map.put("aaa", "111");
            map.put("aaaBbb", "222");
            map.put("aaaBbbCcc", "333");
            map.put("ccc.ddd", "444");
            return new ParamMap<>(map);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top