Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for appendRule (0.15 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

        def ansi = Mock(Ansi)
        def factory = new AnsiFactory() {
            Ansi create() {
                return ansi
            }
        }
        def writeCursor = Cursor.at(42, 0)
        def target = Stub(Appendable)
        def colorMap = new DefaultColorMap()
        def consoleMetaData = Mock(ConsoleMetaData)
        def listener = Mock(DefaultAnsiExecutor.NewLineListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Message builder that supports configurable styling.
     *
     * @since 4.0.0
     * @see MessageBuilderFactory
     */
    public interface MessageBuilder extends Appendable {
    
        /**
         * Append message content in trace style.
         * By default, bold magenta
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

            public Builder newEntry(String name) {
                Entry entry = new Entry();
                entries.put(name, entry);
    
                return new Builder(entry);
            }
    
            private void toJson(Appendable writer) {
                Gson gson = new GsonBuilder()
                    .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_DASHES)
                    .setPrettyPrinting()
                    .create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        assertThat(ArbitraryInstances.get(Appendable.class).toString()).isEmpty();
        assertThat(ArbitraryInstances.get(StringBuilder.class).toString()).isEmpty();
        assertThat(ArbitraryInstances.get(StringBuffer.class).toString()).isEmpty();
        assertFreshInstanceReturned(
            ArrayList.class,
            HashMap.class,
            Appendable.class,
            StringBuilder.class,
            StringBuffer.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

        def ansi = Mock(Ansi)
        def factory = new AnsiFactory() {
            Ansi create() {
                return ansi
            }
        }
        def writeCursor = new Cursor()
        def target = Stub(Appendable)
        def colorMap = new TestColorMap()
        def consoleMetaData = Mock(ConsoleMetaData)
        def newLineListener = Mock(DefaultAnsiExecutor.NewLineListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        assertThat(ArbitraryInstances.get(Appendable.class).toString()).isEmpty();
        assertThat(ArbitraryInstances.get(StringBuilder.class).toString()).isEmpty();
        assertThat(ArbitraryInstances.get(StringBuffer.class).toString()).isEmpty();
        assertFreshInstanceReturned(
            ArrayList.class,
            HashMap.class,
            Appendable.class,
            StringBuilder.class,
            StringBuffer.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  7. src/strconv/quote.go

    		return buf
    	}
    	if ASCIIonly {
    		if r < utf8.RuneSelf && IsPrint(r) {
    			buf = append(buf, byte(r))
    			return buf
    		}
    	} else if IsPrint(r) || graphicOnly && isInGraphicList(r) {
    		return utf8.AppendRune(buf, r)
    	}
    	switch r {
    	case '\a':
    		buf = append(buf, `\a`...)
    	case '\b':
    		buf = append(buf, `\b`...)
    	case '\f':
    		buf = append(buf, `\f`...)
    	case '\n':
    		buf = append(buf, `\n`...)
    	case '\r':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Files.java

      }
    
      /**
       * Copies all characters from a file to an appendable object, using the given character set.
       *
       * @param from the source file
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @param to the appendable object
       * @throws IOException if an I/O error occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/unicode/utf8/utf8.go

    		p[1] = tx | byte(r>>12)&maskx
    		p[2] = tx | byte(r>>6)&maskx
    		p[3] = tx | byte(r)&maskx
    		return 4
    	}
    }
    
    // AppendRune appends the UTF-8 encoding of r to the end of p and
    // returns the extended buffer. If the rune is out of range,
    // it appends the encoding of [RuneError].
    func AppendRune(p []byte, r rune) []byte {
    	// This function is inlineable for fast handling of ASCII.
    	if uint32(r) <= rune1Max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/inl_test.go

    			"(*dictDecoder).tryWriteCopy",
    		},
    		"encoding/base64": {
    			"assemble32",
    			"assemble64",
    		},
    		"unicode/utf8": {
    			"FullRune",
    			"FullRuneInString",
    			"RuneLen",
    			"AppendRune",
    			"ValidRune",
    		},
    		"unicode/utf16": {
    			"Decode",
    		},
    		"reflect": {
    			"Value.Bool",
    			"Value.Bytes",
    			"Value.CanAddr",
    			"Value.CanComplex",
    			"Value.CanFloat",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top