Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for appendTable (0.18 sec)

  1. src/regexp/syntax/parse.go

    		if sign > 0 {
    			r = appendTable(r, tab)
    		} else {
    			r = appendNegatedTable(r, tab)
    		}
    	} else {
    		// Merge and clean tab and fold in a temporary buffer.
    		// This is necessary for the negative case and just tidy
    		// for the positive case.
    		tmp := p.tmpClass[:0]
    		tmp = appendTable(tmp, tab)
    		tmp = appendTable(tmp, fold)
    		p.tmpClass = tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/CharSource.java

       * Does not close {@code appendable} if it is {@code Closeable}.
       *
       * @return the number of characters copied
       * @throws IOException if an I/O error occurs while reading from this source or writing to {@code
       *     appendable}
       */
      @CanIgnoreReturnValue
      public long copyTo(Appendable appendable) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Joiner.java

       * separator between each, to {@code appendable}.
       *
       * @since 11.0
       */
      @CanIgnoreReturnValue
      public <A extends Appendable> A appendTo(A appendable, Iterator<? extends @Nullable Object> parts)
          throws IOException {
        checkNotNull(appendable);
        if (parts.hasNext()) {
          appendable.append(toString(parts.next()));
          while (parts.hasNext()) {
            appendable.append(separator);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Joiner.java

       * separator between each, to {@code appendable}.
       *
       * @since 11.0
       */
      @CanIgnoreReturnValue
      public <A extends Appendable> A appendTo(A appendable, Iterator<? extends @Nullable Object> parts)
          throws IOException {
        checkNotNull(appendable);
        if (parts.hasNext()) {
          appendable.append(toString(parts.next()));
          while (parts.hasNext()) {
            appendable.append(separator);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/CharSource.java

       * Does not close {@code appendable} if it is {@code Closeable}.
       *
       * @return the number of characters copied
       * @throws IOException if an I/O error occurs while reading from this source or writing to {@code
       *     appendable}
       */
      @CanIgnoreReturnValue
      public long copyTo(Appendable appendable) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/StreamingStyledTextOutputTest.groovy

            then:
            1 * listener.onOutput('text')
        }
    
        def forwardsTextToAnAppendable() {
            Appendable appendable = Mock()
            StreamingStyledTextOutput output = new StreamingStyledTextOutput(appendable)
    
            when:
            output.text('text')
    
            then:
            1 * appendable.append('text')
        }
    
        def ignoresStyleInformation() {
            StandardOutputListener listener = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java

          }
        },
        NEW {
          @Override
          long copy(Readable from, Appendable to) throws IOException {
            return CharStreams.copy(from, to);
          }
        };
    
        abstract long copy(Readable from, Appendable to) throws IOException;
      }
    
      enum TargetSupplier {
        STRING_WRITER {
          @Override
          Appendable get(int sz) {
            return new StringWriter(sz);
          }
        },
        STRING_BUILDER {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:59:54 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/StreamBackedStandardOutputListener.java

    public class StreamBackedStandardOutputListener implements StandardOutputListener {
        private final Appendable appendable;
        private final Flushable flushable;
    
        public StreamBackedStandardOutputListener(Appendable appendable) {
            this.appendable = appendable;
            if (appendable instanceof Flushable) {
                flushable = (Flushable) appendable;
            } else {
                flushable = new Flushable() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/StreamingStyledTextOutput.java

            this(listener, listener);
        }
    
        /**
         * Creates a text output which writes text to the given appendable.
         * @param appendable The appendable.
         */
        public StreamingStyledTextOutput(final Appendable appendable) {
            this(appendable, new StreamBackedStandardOutputListener(appendable));
        }
    
        private StreamingStyledTextOutput(Object target, StandardOutputListener listener) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/NestedModelRuleDescriptor.java

            this.child = child;
        }
    
        @Override
        public void describeTo(Appendable appendable) {
            parent.describeTo(appendable);
            try {
                appendable.append(" > ");
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
            child.describeTo(appendable);
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top