Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for formatMessage (0.31 sec)

  1. maven-core/src/main/java/org/apache/maven/project/InvalidProjectVersionException.java

                File pomFile,
                InvalidVersionSpecificationException cause) {
            super(projectId, formatMessage(projectId, locationInPom, offendingVersion, cause), pomFile, cause);
            this.locationInPom = locationInPom;
            this.offendingVersion = offendingVersion;
        }
    
        private static String formatMessage(
                String projectId,
                String locationInPom,
                String offendingVersion,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  2. 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)
    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)
  3. 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");
        }
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  4. 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");
        }
      }
    
      /**
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  5. 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
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. 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
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top