Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 536 for word65 (0.23 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand52 = moduleId('word77', 'word78')
            def operand53 = moduleId('word79', 'word80')
            def operand54 = moduleId('stove', 'word81')
            def operand55 = moduleId('word82', 'word83')
            def operand56 = moduleId('word84', 'word85')
            def operand57 = moduleId('stove', 'word86')
            def operand58 = moduleId('root', 'word87')
            def operand59 = moduleId('root', 'word88')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

        }
    
        private String makeName(String... words) {
            int expectedLength = 0;
            for (String word : words) {
                if (word != null) {
                    expectedLength += word.length();
                }
            }
            StringBuilder builder = new StringBuilder(expectedLength);
            for (String word : words) {
                if (word == null || word.length() == 0) {
                    continue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toWords("") == ""
            toWords("word") == "word"
            toWords("twoWords") == "two words"
            toWords("TwoWords") == "two words"
            toWords("two words") == "two words"
            toWords("Two Words") == "two words"
            toWords(" Two  \t words\n") == "two words"
            toWords("two_words") == "two words"
            toWords("two.words") == "two words"
            toWords("two,words") == "two words"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/internal/sys/consts.go

    const Int64Align = goarch.PtrSize
    
    // MinFrameSize is the size of the system-reserved words at the bottom
    // of a frame (just above the architectural stack pointer).
    // It is zero on x86 and PtrSize on most non-x86 (LR-based) systems.
    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = goarch.MinFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top