Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for appendRule (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/erasure-encode_test.go

    	"context"
    	"crypto/rand"
    	"io"
    	"testing"
    
    	"github.com/dustin/go-humanize"
    )
    
    type badDisk struct{ StorageAPI }
    
    func (a badDisk) String() string {
    	return "bad-disk"
    }
    
    func (a badDisk) AppendFile(ctx context.Context, volume string, path string, buf []byte) error {
    	return errFaultyDisk
    }
    
    func (a badDisk) ReadFileStream(ctx context.Context, volume, path string, offset, length int64) (io.ReadCloser, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top