Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 292 for exceeded (0.04 sec)

  1. src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java

            SMBProtocolDecodingException exception =
                    assertThrows(SMBProtocolDecodingException.class, () -> smallResponse.readDataWireFormat(buffer, 0, 10));
    
            assertEquals("Payload exceeds buffer size", exception.getMessage());
        }
    
        @ParameterizedTest
        @ValueSource(ints = { 1, 10, 100, 500, 1024 })
        void testReadDataWireFormatWithVariousSizes(int dataSize) throws SMBProtocolDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/SmbTreeTest.java

        }
    
        /**
         * Custom SmbTree interface for testing unwrap functionality.
         */
        interface CustomSmbTree extends SmbTree {
            void customMethod();
        }
    
        /**
         * Extended SmbTree interface for testing nested unwrapping.
         */
        interface ExtendedSmbTree extends SmbTree {
            void extendedMethod();
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

                    byte[] buffer = invocation.getArgument(0);
                    buffer[0] = 5;
                    buffer[1] = 0;
                    Encdec.enc_uint16le((short) 4281, buffer, 8); // Exceeds maxRecv
                    return 20;
                });
    
                assertThrows(IOException.class, () -> handle.doReceiveFragment(buf));
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

       * @throws NullPointerException if {@code sets}, any one of the {@code sets}, or any element of a
       *     provided set is null
       * @throws IllegalArgumentException if the cartesian product size exceeds the {@code int} range
       * @since 2.0
       */
      public static <B> Set<List<B>> cartesianProduct(List<? extends Set<? extends B>> sets) {
        return CartesianSet.create(sets);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

            if (this.outputBuffer != null) {
                if (outputCount > this.outputBuffer.length) {
                    throw new SMBProtocolDecodingException("Output length exceeds buffer size");
                }
                System.arraycopy(buffer, outputOffset, this.outputBuffer, 0, outputCount);
            } else if (this.outputData != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                }
            }
            return list;
        }
    
        /**
         * Checks if an artifact name should be excluded from the results.
         *
         * @param artifactType the type of the artifact
         * @param name the name of the artifact
         * @return true if the artifact should be excluded, false otherwise
         */
        protected boolean isExcludedName(final ArtifactType artifactType, final String name) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                        && !parentArtifact.getDependencyFilter().include(artifact)) {
                                    // MNG-3769: the [probably relocated] artifact is excluded.
                                    // We could process exclusions on relocated artifact details in the
                                    // MavenMetadataSource.createArtifacts(..) step, BUT that would
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ntlmssp/Type1MessageTest.java

            assertTrue(stringRep.contains("Type1Message"));
            assertTrue(stringRep.contains("DOMAIN"));
            assertTrue(stringRep.contains("WORKSTATION"));
        }
    
        @Test
        @DisplayName("Should handle extended security flags")
        void testExtendedSecurityFlags() {
            // Given
            int extendedFlags = NtlmFlags.NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY;
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

                        "RqLs", // Request lease
                        "DH2Q", // Durable handle request V2
                        "DH2C", // Durable handle reconnect V2
                        "ExtA", // Extended attributes
                        "SecD", // Security descriptor
                        "AppI" // App instance ID
                };
    
                for (String name : contextNames) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

                        }
                        array[_i].decode(_src);
                    }
                }
            }
        }
    
        /**
         * Share information level 1 structure containing extended share information.
         */
        public static class ShareInfo1 extends NdrObject {
    
            /**
             * Default constructor for ShareInfo1.
             */
            public ShareInfo1() {
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
Back to top