Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 270 for Missing (0.11 sec)

  1. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

            @Test
            @DisplayName("Should throw DcerpcException for missing endpoint")
            void testConstructor_MissingEndpoint() {
                String urlWithoutEndpoint = "ncacn_np:server";
                assertThrows(DcerpcException.class, () -> new DcerpcPipeHandle(urlWithoutEndpoint, mockContext, false),
                        "Should throw DcerpcException for missing endpoint");
            }
        }
    
        @Nested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

            assertNotNull(pairs, "Decoded pairs should not be null");
            assertEquals(0, pairs.size(), "Should have no pairs");
        }
    
        /**
         * Test decode with missing EOL
         */
        @Test
        @DisplayName("Decode should throw exception when EOL is missing")
        void testDecodeMissingEOL() {
            byte[] flagData = new byte[4];
            SMBUtil.writeInt4(0x12345678, flagData, 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.range.DateRangeAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/MutableGraph.java

       *
       * <p>If this graph is directed, {@code endpoints} must be ordered.
       *
       * <p>If either or both endpoints are not already present in this graph, this method will silently
       * {@link #addNode(Object) add} each missing endpoint to the graph.
       *
       * @return {@code true} if the graph was modified as a result of this call
       * @throws IllegalArgumentException if the introduction of the edge would violate {@link
       *     #allowsSelfLoops()}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            generator = new TestThumbnailGenerator();
            Map<String, Object> docMap = new HashMap<>();
    
            // Note: isTarget requires FessConfig which needs container
            // We can only verify the method handles missing container gracefully
            try {
                generator.isTarget(docMap);
            } catch (IllegalStateException e) {
                // Expected when container is not initialized
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/MIENameTest.java

                    Arguments.of("oid length exceeds buffer", new byte[] { 0x04, 0x01, 0x00, 0x10, 0x06 }, IllegalArgumentException.class),
    
                    // Missing NAME_LEN (not enough bytes for 4-byte length)
                    Arguments.of("missing NAME_LEN bytes", new byte[] { 0x04, 0x01, 0x00, (byte) der.length, der[0] },
                            IllegalArgumentException.class),
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackDecodeTestBase.kt

         */
        @JvmStatic
        protected fun createStories(interopTests: Array<String>): List<Any> {
          if (interopTests.isEmpty()) return listOf<Any>(Story.MISSING)
    
          val result = mutableListOf<Any>()
          for (interopTestName in interopTests) {
            val stories = HpackJsonUtil.readStories(interopTestName)
            result.addAll(stories)
          }
          return result
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            }
        }
    
        public void test_throwAndCatchAsRuntimeException() {
            // Test catching as RuntimeException
            String errorMessage = "LDAP search base is missing";
    
            try {
                throw new LdapConfigurationException(errorMessage);
            } catch (RuntimeException e) {
                assertEquals(errorMessage, e.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/MutableValueGraph.java

       *
       * <p>Values do not have to be unique. However, values must be non-null.
       *
       * <p>If either or both endpoints are not already present in this graph, this method will silently
       * {@link #addNode(Object) add} each missing endpoint to the graph.
       *
       * @return the value previously associated with the edge connecting {@code nodeU} to {@code
       *     nodeV}, or null if there was no such edge.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/pac/kerberos/KerberosTokenTest.java

            assertThrows(PACDecodingException.class, () -> new KerberosToken(malformedToken));
        }
    
        /**
         * Test constructor with missing APPLICATION tag in the token.
         *
         * @throws IOException if an I/O error occurs
         */
        @Test
        void testConstructorWithMissingApplicationTag() throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top