Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for UNSUCCESSFUL (0.14 sec)

  1. src/test/java/jcifs/smb/SmbAuthExceptionTest.java

        @DisplayName("String ctor: preserves message; default unsuccessful status")
        void messageConstructor_handlesNullAndEmpty(String msg) {
            // Act
            SmbAuthException ex = new SmbAuthException(msg);
    
            // Assert
            assertEquals(msg, ex.getMessage());
            assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus(), "default status must be unsuccessful");
            assertNull(ex.getCause());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java

        }
    
        // Happy path: message + cause constructor should chain cause and set unsuccessful status
        @ParameterizedTest
        @NullSource
        @ValueSource(strings = { "", "error", "detailed message" })
        @DisplayName("Message+Cause ctor: propagates message/cause and unsuccessful status")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/FailedPlan.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.connection
    
    /**
     * Used when we were unsuccessful in the planning phase of a connection:
     *
     *  * A DNS lookup failed
     *  * The configuration is incapable of carrying the request, such as when the client is configured
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbEndOfFileExceptionTest.java

            // Assert
            assertEquals("Unexpectedly reached end of file", ex.getMessage(), "Default message must match");
            assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus(), "Default NT status should be UNSUCCESSFUL");
            assertNull(ex.getCause(), "Cause should be null by default");
            assertNull(ex.getRootCause(), "Root cause should be null by default");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/SMBSigningDigest.java

         * @param extraPad
         *            extra padding to include in signature
         * @param msg
         *            The message to verify
         * @return whether verification was unsuccessful
         */
        boolean verify(byte[] data, int offset, int length, int extraPad, CommonServerMessageBlock msg);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

        }
      }
    
      // TODO GET preferred order - with tests to confirm this
      // 1. successful fresh cached GET response
      // 2. unsuccessful (404, 500) fresh cached GET response
      // 3. successful network response
      // 4. successful stale cached GET response
      // 5. unsuccessful response
      @Test
      fun usesCache() {
        val cache = Cache(cacheFs, "cache".toPath(), (100 * 1024).toLong())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtStatus.java

        int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C;
        /** The data was too large to fit into the specified buffer */
        int NT_STATUS_BUFFER_OVERFLOW = 0x80000005;
        /** The requested operation was unsuccessful */
        int NT_STATUS_UNSUCCESSFUL = 0xC0000001;
        /** The requested operation is not implemented */
        int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
        /** The specified information class is invalid */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/FastFallbackTest.kt

        serverIpv4.close()
        serverIpv6.close()
    
        val call = client.newCall(Request(url))
        assertFailsWith<IOException> {
          call.execute()
        }
    
        // In the process we made two unsuccessful connection attempts.
        assertThat(listener.recordedEventTypes().filter { it == "ConnectStart" }).hasSize(2)
        assertThat(listener.recordedEventTypes().filter { it == "ConnectFailed" }).hasSize(2)
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtStatus.java

         * block is automatically generated from the ntstatus package.
         */
    
        /** The operation completed successfully */
        int NT_STATUS_SUCCESS = 0x00000000;
        /** The requested operation was unsuccessful */
        int NT_STATUS_UNSUCCESSFUL = 0xC0000001;
        /** The requested operation is not implemented */
        int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
        /** The specified information class is invalid */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>notifiers</name>
              <version>4.0.0+</version>
              <description>Configuration for notifying developers/users when a build is unsuccessful,
                including user information and notification mode.</description>
              <association>
                <multiplicity>*</multiplicity>
                <type>Notifier</type>
              </association>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
Back to top