Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for pantas (0.08 sec)

  1. src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java

        }
    
        /**
         * Test the toString method with SV_TYPE_ALL.
         */
        @Test
        void testToString_SV_TYPE_ALL() {
            String result = netServerEnum2.toString();
            // Verify the key parts of the string representation
            assertTrue(result.startsWith("NetServerEnum2["));
            assertTrue(result.contains("command=SMB_COM_TRANSACTION"));
            assertTrue(result.contains(",name=\\PIPE\\LANMAN"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/SearchForm.java

         */
        public SearchForm() {
        }
    
        /**
         * The name field for searching file configurations.
         */
        public String name;
    
        /**
         * The paths field for searching file configurations.
         */
        public String paths;
    
        /**
         * The description field for searching file configurations.
         */
        public String description;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

    import jakarta.annotation.Resource;
    
    /**
     * Abstract base class for creating dictionary files from file paths.
     * Dictionary creators are responsible for recognizing specific file patterns
     * and creating appropriate DictionaryFile instances for them.
     */
    public abstract class DictionaryCreator {
    
        /** Pattern used to match file paths that this creator can handle. */
        protected Pattern pattern;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

                        "Java toolchain without the " + JavaToolchainImpl.KEY_JAVAHOME + " configuration element.");
            }
            Path normal = Paths.get(javahome.getValue()).normalize();
            if (Files.exists(normal)) {
                jtc.setJavaHome(Paths.get(javahome.getValue()).normalize().toString());
            } else {
                throw new MisconfiguredToolchainException(
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/MultipartBodyTest.kt

        assertThat(body.boundary).isEqualTo("123")
        assertThat(body.type).isEqualTo(MultipartBody.MIXED)
        assertThat(body.contentType().toString())
          .isEqualTo("multipart/mixed; boundary=123")
        assertThat(body.parts.size).isEqualTo(1)
        assertThat(body.contentLength()).isEqualTo(33L)
        val buffer = Buffer()
        body.writeTo(buffer)
        assertThat(body.contentLength()).isEqualTo(buffer.size)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/base/JoinerTest.java

            }
          };
    
      private static void checkResult(Joiner joiner, Iterable<Integer> parts, String expected) {
        assertEquals(expected, joiner.join(parts));
        assertEquals(expected, joiner.join(parts.iterator()));
    
        StringBuilder sb1FromIterable = new StringBuilder().append('x');
        joiner.appendTo(sb1FromIterable, parts);
        assertEquals("x" + expected, sb1FromIterable.toString());
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

        val type: MediaType = multipartBody.type()
        val boundary: String = multipartBody.boundary()
        val size: Int = multipartBody.size()
        val parts: List<MultipartBody.Part> = multipartBody.parts()
      }
    
      @Test @Disabled
      fun multipartBodyPart() {
        val multipartBody: MultipartBody = MultipartBody.Builder().build()
        val part: MultipartBody.Part = multipartBody.part(0)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/SmbResourceLocatorTest.java

                }
                if (path.endsWith("/")) {
                    return path.substring(0, path.length()); // keep trailing slash
                }
                String[] parts = path.split("/");
                return parts[parts.length - 1];
            }
    
            @Override
            public String getParent() {
                if (path == null || path.isEmpty() || path.equals("/")) {
                    return "smb://";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.depth=Depth
    labels.excludedPaths=Excluded Paths for Crawling
    labels.excludedUrls=Excluded URLs for Crawling
    labels.excludedDocPaths=Excluded Paths for Searching
    labels.excludedDocUrls=Excluded URLs for Searching
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Included Paths for Crawling
    labels.includedUrls=Included URLs for Crawling
    labels.includedDocPaths=Included Paths for Searching
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/com/SmbComCreateDirectoryTest.java

            String directoryName = "myDir";
            SmbComCreateDirectory smbCom = new SmbComCreateDirectory(mockConfig, directoryName);
            String actualString = smbCom.toString();
    
            // Check for key parts of the string representation
            org.junit.jupiter.api.Assertions.assertTrue(actualString.startsWith("SmbComCreateDirectory["),
                    "String should start with the class name.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top