Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 89 for Msglen (0.15 sec)

  1. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    	}
    
    	cacheKey := cacheKeyType{signerName: signerName, labelSelector: selector.String()}
    
    	if lsLen := len(cacheKey.labelSelector); lsLen > maxLabelSelectorLength {
    		return nil, fmt.Errorf("label selector length (%d) is larger than %d", lsLen, maxLabelSelectorLength)
    	}
    
    	if cachedAnchors, ok := m.normalizationCache.Get(cacheKey); ok {
    		return cachedAnchors.([]byte), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/internal/bytealg/indexbyte_loong64.s

    	MOVBU	(R4), R8
    	BNE	R7, R8, loop
    
    	SUBV	R6, R4		// remove base
    	RET
    
    notfound:
    	MOVV	$-1, R4
    	RET
    
    TEXT ·IndexByteString<ABIInternal>(SB),NOSPLIT,$0-32
    	// R4 = s_base
    	// R5 = s_len
    	// R6 = byte to find
    	MOVV	R4, R7		// store base for later
    	ADDV	R4, R5		// end
    	ADDV	$-1, R4
    
    	PCALIGN	$16
    loop:
    	ADDV	$1, R4
    	BEQ	R4, R5, notfound
    	MOVBU	(R4), R8
    	BNE	R6, R8, loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 905 bytes
    - Viewed (0)
  3. src/internal/bytealg/indexbyte_arm.s

    	MOVW	b_base+0(FP), R0
    	MOVW	b_len+4(FP), R1
    	MOVBU	c+12(FP), R2	// byte to find
    	MOVW	$ret+16(FP), R5
    	B	indexbytebody<>(SB)
    
    TEXT ·IndexByteString(SB),NOSPLIT,$0-16
    	MOVW	s_base+0(FP), R0
    	MOVW	s_len+4(FP), R1
    	MOVBU	c+8(FP), R2	// byte to find
    	MOVW	$ret+12(FP), R5
    	B	indexbytebody<>(SB)
    
    // input:
    //  R0: data
    //  R1: data length
    //  R2: byte to find
    //  R5: address to put result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 07:37:13 UTC 2019
    - 951 bytes
    - Viewed (0)
  4. src/internal/bytealg/indexbyte_mips64x.s

    	BNE	R3, R5, loop
    
    	SUBV	R4, R1		// remove base
    	MOVV	R1, ret+32(FP)
    	RET
    
    notfound:
    	MOVV	$-1, R1
    	MOVV	R1, ret+32(FP)
    	RET
    
    TEXT ·IndexByteString(SB),NOSPLIT,$0-32
    	MOVV	s_base+0(FP), R1
    	MOVV	s_len+8(FP), R2
    	MOVBU	c+16(FP), R3	// byte to find
    	MOVV	R1, R4		// store base for later
    	ADDV	R1, R2		// end
    	ADDV	$-1, R1
    
    loop:
    	ADDV	$1, R1
    	BEQ	R1, R2, notfound
    	MOVBU	(R1), R5
    	BNE	R3, R5, loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 985 bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_mipsx.s

    	MOVW	R1, ret+16(FP)
    	RET
    
    notfound:
    	MOVW	$-1, R1
    	MOVW	R1, ret+16(FP)
    	RET
    
    TEXT ·IndexByteString(SB),NOSPLIT,$0-16
    	MOVW	s_base+0(FP), R1
    	MOVW	s_len+4(FP), R2
    	MOVBU	c+8(FP), R3	// byte to find
    	ADDU	$1, R1, R4	// store base+1 for later
    	ADDU	R1, R2	// end
    
    loop:
    	BEQ	R1, R2, notfound
    	MOVBU	(R1), R5
    	ADDU	$1, R1
    	BNE	R3, R5, loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1012 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s

    	ADDQ  t2, h0;                  \
    	ADCQ  t3, h1;                  \
    	ADCQ  $0, h2
    
    // func update(state *[7]uint64, msg []byte)
    TEXT ·update(SB), $0-32
    	MOVQ state+0(FP), DI
    	MOVQ msg_base+8(FP), SI
    	MOVQ msg_len+16(FP), R15
    
    	MOVQ 0(DI), R8   // h0
    	MOVQ 8(DI), R9   // h1
    	MOVQ 16(DI), R10 // h2
    	MOVQ 24(DI), R11 // r0
    	MOVQ 32(DI), R12 // r1
    
    	CMPQ R15, $16
    	JB   bytes_between_0_and_15
    
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_arm.s

    TEXT ·Count(SB),NOSPLIT,$0-20
    	MOVW	b_base+0(FP), R0
    	MOVW	b_len+4(FP), R1
    	MOVBU	c+12(FP), R2
    	MOVW	$ret+16(FP), R7
    	B	countbytebody<>(SB)
    
    TEXT ·CountString(SB),NOSPLIT,$0-16
    	MOVW	s_base+0(FP), R0
    	MOVW	s_len+4(FP), R1
    	MOVBU	c+8(FP), R2
    	MOVW	$ret+12(FP), R7
    	B	countbytebody<>(SB)
    
    // Input:
    // R0: data
    // R1: data length
    // R2: byte to find
    // R7: address to put result
    //
    // On exit:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:33:10 UTC 2019
    - 917 bytes
    - Viewed (0)
  8. src/strconv/atoi.go

    	}
    	return n, nil
    }
    
    // Atoi is equivalent to ParseInt(s, 10, 0), converted to type int.
    func Atoi(s string) (int, error) {
    	const fnAtoi = "Atoi"
    
    	sLen := len(s)
    	if intSize == 32 && (0 < sLen && sLen < 10) ||
    		intSize == 64 && (0 < sLen && sLen < 19) {
    		// Fast path for small integers that fit int type.
    		s0 := s
    		if s[0] == '-' || s[0] == '+' {
    			s = s[1:]
    			if len(s) < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/internal/bytealg/indexbyte_wasm.s

    	I64Sub
    	Get R0
    	I64Eqz $0
    	Select
    	I64Store ret+32(FP)
    
    	RET
    
    TEXT ·IndexByteString(SB), NOSPLIT, $0-32
    	Get SP
    	I64Load s_base+0(FP)
    	I32WrapI64
    	I32Load8U c+16(FP)
    	I64Load s_len+8(FP)
    	I32WrapI64
    	Call memchr<>(SB)
    	I64ExtendI32S
    	Set R0
    
    	I64Const $-1
    	Get R0
    	I64Load s_base+0(FP)
    	I64Sub
    	Get R0
    	I64Eqz $0
    	Select
    	I64Store ret+24(FP)
    
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 03:59:19 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/escape/CharEscaperBuilder.java

         * array directly, saving a method call.
         */
        @Override
        public String escape(String s) {
          int slen = s.length();
          for (int index = 0; index < slen; index++) {
            char c = s.charAt(index);
            if (c < replacements.length && replacements[c] != null) {
              return escapeSlow(s, index);
            }
          }
          return s;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top