Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 3,830 for asString (2.91 sec)

  1. src/test/java/jcifs/smb1/netbios/NbtExceptionTest.java

        void testSessionServiceErrors(int errorCode, String description) {
            int errSsn = NbtException.ERR_SSN_SRVC;
            String message = NbtException.getErrorString(errSsn, errorCode);
            assertTrue(message.contains(description));
        }
    
        @Test
        @DisplayName("getErrorString for unknown error class")
        void testUnknownErrorClass() {
            int unknownClass = 1234;
            String expected = "unknown error class: 1234";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            String capturedSessionId;
            List<String> capturedCmdList;
            Map<String, String> capturedEnvironment;
            File capturedDirectory;
            int exitValue = 0;
            String processOutput = "Test output";
            RuntimeException throwException = null;
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

         */
        protected String escape(final String q, final String... values) {
            String value = q;
            for (final String s : values) {
                value = value.replace(s, "\\" + s);
            }
            return value;
        }
    
        /**
         * Sets the search request parameters for this builder.
         * This method follows the builder pattern for method chaining.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

        public static final String MAVEN_STYLE_TRACE_NAME = "trace";
        public static final String MAVEN_STYLE_DEBUG_NAME = "debug";
        public static final String MAVEN_STYLE_INFO_NAME = "info";
        public static final String MAVEN_STYLE_WARNING_NAME = "warning";
        public static final String MAVEN_STYLE_ERROR_NAME = "error";
        public static final String MAVEN_STYLE_SUCCESS_NAME = "success";
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 25 11:08:20 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        public void setFrom(String from, String personal) {
            doSetFrom(from, personal);
        }
    
        public void addTo(String to) {
            doAddTo(to);
        }
    
        public void addTo(String to, String personal) {
            doAddTo(to, personal);
        }
    
        public void addCc(String cc) {
            doAddCc(cc);
        }
    
        public void addCc(String cc, String personal) {
            doAddCc(cc, personal);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

     */
    public class KuromojiItem extends DictionaryItem {
        private final String token;
    
        private final String segmentation;
    
        private final String reading;
    
        private final String pos;
    
        private String newToken;
    
        private String newSegmentation;
    
        private String newReading;
    
        private String newPos;
    
        /**
         * Constructs a new Kuromoji item.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            log.info("Set health check interval to {} ms", millis);
        }
    
        /**
         * Get current pool statistics
         * @return pool statistics string
         */
        public String getPoolStatistics() {
            return String.format("Pool statistics: Active=%d, NonPooled=%d, MaxSize=%d, Failures=%d, HealthChecks=%d, Removed=%d",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/SourceSinkFactories.java

          }
          return Files.asCharSink(file, UTF_8);
        }
    
        @Override
        public String getExpected(String string) {
          checkNotNull(string);
          return initialString == null ? string : initialString + string;
        }
    
        @Override
        public String getSinkContents() throws IOException {
          File file = getFile();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

      }
    
      private static class StringHolder {
        @Nullable String string;
      }
    
      public void testBuilder_withMutableEntry() {
        ImmutableMap.Builder<String, Integer> builder = new Builder<>();
        StringHolder holder = new StringHolder();
        holder.string = "one";
        Entry<String, Integer> entry =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/Types.java

        @Keep
        public D getGenericDeclaration() {
          return genericDeclaration;
        }
    
        @Keep
        public String getName() {
          return name;
        }
    
        @Keep
        public String getTypeName() {
          return name;
        }
    
        @Override
        public String toString() {
          return name;
        }
    
        @Override
        public int hashCode() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
Back to top