Search Options

Results per page
Sort
Preferred Languages
Advance

Results 451 - 460 of 1,874 for Fontaine (0.16 sec)

  1. src/test/java/jcifs/internal/dtyp/ACETest.java

            assertTrue(result.startsWith("Allow "));
            // Hexdump.toHexString produces uppercase hex
            assertTrue(result.toLowerCase().contains("0x001200a9"));
            // ACE.toString() outputs "Direct    " with 4 spaces
            assertTrue(result.contains("Direct"));
            assertTrue(result.contains("This folder only"));
        }
    
        @Test
        @DisplayName("Test toString format for deny ACE")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/ServerResponseValidator.java

            }
    
            // Check for directory traversal
            if (path.contains("..") || path.contains("./") || path.contains(".\\")) {
                failedValidations.incrementAndGet();
                log.warn("Path contains traversal sequences: {}", sanitizeForLog(path));
                throw new SmbException("Path contains directory traversal");
            }
    
            // Check individual components
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NameTest.java

            Name name = new Name(mockConfig, "TEST", 0x20, "scope.com");
            String result = name.toString();
    
            assertTrue(result.contains("TEST"));
            assertTrue(result.contains("<20>"));
            assertTrue(result.contains("scope.com"));
        }
    
        @Test
        void toString_withNullName_shouldHandleGracefully() {
            Name name = new Name(mockConfig, "TEST", 0x20, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            assertTrue(cmdNotFound.getMessage().contains("not found"));
    
            // Scenario 2: Command timeout
            CommandExecutionException timeout =
                    new CommandExecutionException("Command execution timed out after 30 seconds", new RuntimeException("Timeout"));
            assertTrue(timeout.getMessage().contains("timed out"));
            assertNotNull(timeout.getCause());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  5. ci/official/utilities/cleanup_docker.sh

    # ==============================================================================
    cat <<EOF
    IMPORTANT: These tests ran under docker. This script does not clean up the
    container for you! You can delete the container with:
    
    $ docker rm -f tf
    
    You can also execute more commands within the container with e.g.:
    
    $ docker exec tf bazel clean
    $ docker exec -it tf bash
    EOF
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Aug 10 20:26:29 UTC 2023
    - 998 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RegularContiguousSet.java

      @GwtIncompatible // not used by GWT emulation
      @Override
      int indexOf(@Nullable Object target) {
        if (!contains(target)) {
          return -1;
        }
        // The cast is safe because of the contains check—at least for any reasonable Comparable class.
        @SuppressWarnings("unchecked")
        // requireNonNull is safe because of the contains check.
        C c = (C) requireNonNull(target);
        return (int) domain.distance(first(), c);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java

            assertTrue(result.contains("SMB_COM_TRANSACTION"));
            // Also verify it contains transaction-specific details
            assertTrue(result.contains("totalParameterCount"));
            assertTrue(result.contains("totalDataCount"));
            assertTrue(result.contains("maxParameterCount"));
            assertTrue(result.contains("maxDataCount"));
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/BooleansTest.java

          }
        }
      }
    
      public void testContains() {
        assertThat(Booleans.contains(EMPTY, false)).isFalse();
        assertThat(Booleans.contains(ARRAY_FALSE, true)).isFalse();
        assertThat(Booleans.contains(ARRAY_FALSE, false)).isTrue();
        assertThat(Booleans.contains(ARRAY_FALSE_TRUE, false)).isTrue();
        assertThat(Booleans.contains(ARRAY_FALSE_TRUE, true)).isTrue();
      }
    
      public void testIndexOf() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java

            String result = netServerEnum2.toString();
    
            assertNotNull(result);
            assertTrue(result.contains("NetServerEnum2["));
            assertTrue(result.contains("name=\\PIPE\\LANMAN"));
            assertTrue(result.contains("serverTypes=SV_TYPE_ALL"));
            assertTrue(result.endsWith("]"));
        }
    
        @Test
        @DisplayName("Test toString with SV_TYPE_DOMAIN_ENUM")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/SmbShareInfoTest.java

        void testToString() {
            SmbShareInfo instance = new SmbShareInfo("SHARE", 2, "remark");
            String result = instance.toString();
            assertTrue(result.contains("netName=SHARE"));
            assertTrue(result.contains("type=0x00000002"));
            assertTrue(result.contains("remark=remark"));
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5K bytes
    - Viewed (0)
Back to top