Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for appendValue (0.19 sec)

  1. okcurl/src/main/kotlin/okhttp3/curl/logging/OneLineLogFormat.kt

     *
     * Why so much construction?
     */
    class OneLineLogFormat : Formatter() {
      private val d =
        DateTimeFormatterBuilder()
          .appendValue(HOUR_OF_DAY, 2)
          .appendLiteral(':')
          .appendValue(MINUTE_OF_HOUR, 2)
          .optionalStart()
          .appendLiteral(':')
          .appendValue(SECOND_OF_MINUTE, 2)
          .optionalStart()
          .appendFraction(NANO_OF_SECOND, 3, 3, true)
          .toFormatter()
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Fri Apr 05 03:30:42 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

            final String value = System.getProperty(name);
            if (value != null) {
                final StringBuilder buf = new StringBuilder();
                buf.append("-D").append(name).append("=").append(value);
                if (appendValue != null) {
                    buf.append(appendValue);
                }
                cmdList.add(buf.toString());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

     package org.hamcrest; public abstract synchronized class BaseDescription implements Description { public void BaseDescription(); public Description appendText(String); public Description appendDescriptionOf(SelfDescribing); public Description appendValue(Object); private String descriptionOf(Object); public transient Description appendValueList(String, String, String, Object[]); public Description appendValueList(String, String, String, Iterable); private Description appendValueList(String, String,...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithProblemMessageMatcher.java

        }
    
        @Override
        public void describeTo(Description description) {
            description.appendText("a ProjectBuildingResult with message ").appendValue(problemMessage);
        }
    
        @Override
        public void describeMismatch(final Object o, final Description description) {
            if (!(o instanceof ProjectBuildingResult)) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    implements Description { @Override public Description appendText(String text) { append(text); return this; } @Override public Description appendDescriptionOf(SelfDescribing value) { value.describeTo(this); return this; } @Override public Description appendValue(Object value) { if (value == null) { append("null"); } else if (value instanceof String) { toJavaSyntax((String) value); } else if (value instanceof Character) { append('"'); toJavaSyntax((Character) value); append('"'); } else if (value instanceof...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    interface org.hamcrest.Description Appends some plain text to the description. appendText(String) - Method in class org.hamcrest.Description.NullDescription appendValue(Object) - Method in class org.hamcrest.BaseDescription appendValue(Object) - Method in interface org.hamcrest.Description Appends an arbitary value to the description. appendValue(Object) - Method in class org.hamcrest.Description.NullDescription appendValueList(String, String, String, T...) - Method in class org.hamcrest.BaseDescription...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
Back to top