Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for formatMessage (0.09 sec)

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

          .optionalStart()
          .appendFraction(NANO_OF_SECOND, 3, 3, true)
          .toFormatter()
    
      private val offset = ZoneOffset.systemDefault()
    
      override fun format(record: LogRecord): String {
        val message = formatMessage(record)
    
        val time = Instant.ofEpochMilli(record.millis).atZone(offset)
    
        return if (record.thrown != null) {
          val sw = StringWriter(4096)
          val pw = PrintWriter(sw)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.1K bytes
    - Viewed (1)
  2. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertTrue(manager.startupTimes().isEmpty());
        Formatter logFormatter =
            new Formatter() {
              @Override
              public String format(LogRecord record) {
                return formatMessage(record);
              }
            };
        for (LogRecord record : logHandler.getStoredLogRecords()) {
          assertThat(logFormatter.format(record)).doesNotContain("NoOpService");
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (openbsd-amd64-cgo), type RoutingMessage //deprecated
    pkg syscall (windows-386), func FormatMessage //deprecated
    pkg syscall (windows-386), func StringToUTF16 //deprecated
    pkg syscall (windows-386), func StringToUTF16Ptr //deprecated
    pkg syscall (windows-amd64), func FormatMessage //deprecated
    pkg syscall (windows-amd64), func StringToUTF16 //deprecated
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. test-site/activator-launch-1.3.2.jar

    java.util.jar.Attributes, String, String, String); private static void parseCapability(org.apache.ivy.osgi.core.BundleInfo, java.util.jar.Attributes, String, String); private static org.apache.ivy.osgi.util.Version versionOf(String); public static String formatMessage(module.id.ModuleRevisionId[]); private static boolean matches(org.apache.ivy.plugins.matcher.PatternMatcher, String, String); public static boolean matches(org.apache.ivy.plugins.matcher.PatternMatcher, module.id.ArtifactId, module.id.ArtifactId);...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (windows-386), func FlushFileBuffers(Handle) error
    pkg syscall (windows-386), func FlushViewOfFile(uintptr, uintptr) error
    pkg syscall (windows-386), func FormatMessage(uint32, uint32, uint32, uint32, []uint16, *uint8) (uint32, error)
    pkg syscall (windows-386), func FreeEnvironmentStrings(*uint16) error
    pkg syscall (windows-386), func FreeLibrary(Handle) error
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top