Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 525 for Dword1 (0.2 sec)

  1. src/mime/encodedword.go

    }
    
    // Decode decodes an RFC 2047 encoded-word.
    func (d *WordDecoder) Decode(word string) (string, error) {
    	// See https://tools.ietf.org/html/rfc2047#section-2 for details.
    	// Our decoder is permissive, we accept empty encoded-text.
    	if len(word) < 8 || !strings.HasPrefix(word, "=?") || !strings.HasSuffix(word, "?=") || strings.Count(word, "?") != 4 {
    		return "", errInvalidWord
    	}
    	word = word[2 : len(word)-2]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/math/big/arith_test.go

    	}
    }
    
    // TODO(gri) mulAddVWW and divWVW are symmetric operations but
    // their signature is not symmetric. Try to unify.
    
    type funWVW func(z []Word, xn Word, x []Word, y Word) (r Word)
    type argWVW struct {
    	z  nat
    	xn Word
    	x  nat
    	y  Word
    	r  Word
    }
    
    func testFunWVW(t *testing.T, msg string, f funWVW, a argWVW) {
    	z := make(nat, len(a.z))
    	r := f(z, a.xn, a.x, a.y)
    	for i, zi := range z {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  3. src/runtime/memmove_loong64.s

    	BNE	R7, out1
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R6, R7
    	BNE	R7, out1
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R9, R8
    	BEQ	R8, words1
    	ADDV	$-1, R5
    	MOVB	(R5), R7
    	ADDV	$-1, R9
    	MOVB	R7, (R9)
    	JMP	-6(PC)
    
    words1:
    	// do 8 bytes at a time if there is room
    	ADDV	$7, R4, R6 // R6 is start pointer+7
    
    	PCALIGN	$16
    	SGTU	R9, R6, R8
    	BEQ	R8, out1
    	ADDV	$-8, R5
    	MOVV	(R5), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/memmove_mips64x.s

    	BNE	R4, out1
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R3, R4
    	BNE	R4, out1
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R6, R5
    	BEQ	R5, words1
    	ADDV	$-1, R2
    	MOVB	(R2), R4
    	ADDV	$-1, R6
    	MOVB	R4, (R6)
    	JMP	-6(PC)
    
    words1:
    	// do 8 bytes at a time if there is room
    	ADDV	$7, R1, R3 // R3 is start pointer+7
    
    	SGTU	R6, R3, R5
    	BEQ	R5, out1
    	ADDV	$-8, R2
    	MOVV	(R2), R4
    	ADDV	$-8, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/Trie.java

        private final boolean terminal;
        private final Trie[] transitions;
    
        public static Trie from(String... words) {
            return from(Arrays.asList(words));
        }
    
        public static Trie from(Iterable<String> words) {
            Builder builder = new Builder();
            for (String word : words) {
                builder.addWord(word);
            }
            return builder.build();
        }
    
        public static Builder builder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    			words[len(words)-1] += word
    		} else {
    			words = append(words, word)
    		}
    		isPrevEncoded = isEncoded
    	}
    	// Ignore any error if we got at least one word.
    	if err != nil && len(words) == 0 {
    		debug.Printf("consumePhrase: hit err: %v", err)
    		return "", fmt.Errorf("mail: missing word in phrase: %v", err)
    	}
    	phrase = strings.Join(words, " ")
    	return phrase, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

            result.add(sb.toString());
            // lines
            for (String line : lines) {
                sb.setLength(0);
                String[] words = S_FILTER.split(line);
                for (String word : words) {
                    if (sb.length() >= remainder - word.length() - (sb.length() > 0 ? 1 : 0)) {
                        repeat(sb, ' ', remainder - sb.length());
                        result.add(BOX_CHAR + " " + sb + " " + BOX_CHAR);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 20:55:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/math/big/natconv.go

    // maxPow returns (b**n, n) such that b**n is the largest power b**n <= _M.
    // For instance maxPow(10) == (1e19, 19) for 19 decimal digits in a 64bit Word.
    // In other words, at most n digits in base b fit into a Word.
    // TODO(gri) replace this with a table, generated at build time.
    func maxPow(b Word) (p Word, n int) {
    	p, n = b, 1 // assuming b <= _M
    	for max := _M / b; p <= max; {
    		// p == b**n && p <= max
    		p *= b
    		n++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            }
        }
    
        protected QueryBuilder buildFilterQuery(final String fieldName, final List<String> words) {
            final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery().minimumShouldMatch(1);
            words.stream().forEach(word -> boolQueryBuilder.should(QueryBuilders.termQuery(fieldName, word)));
            return boolQueryBuilder;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse.go

    	parsed := &Rule{Raw: rule}
    
    	// Split rule into "words" (where a quoted string is a single word).
    	var words []string
    	for _, match := range wordRegex.FindAllStringSubmatch(rule, -1) {
    		words = append(words, strings.Trim(match[1], `"`))
    	}
    
    	// The chain name must come first (and can't be the only thing there)
    	if len(words) < 2 || words[0] != "-A" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top