Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 416 for FAILURE (0.12 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        assertFailsWith<SSLPeerUnverifiedException> {
          call.execute()
        }.also { expected ->
          // Certificate pinning fails!
          assertThat(expected.message!!).startsWith("Certificate pinning failure!")
        }
      }
    
      @Test
      fun unrelatedPinnedIntermediateCertificateInChain() {
        // https://github.com/square/okhttp/issues/4729
        platform.expectFailureOnConscryptPlatform()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 24.3K bytes
    - Viewed (1)
  2. src/main/resources/fess_label.properties

    labels.errorName=Error Name
    labels.expiredTime=Expired Time
    labels.expires=Expires
    labels.failureCountThreshold=Failure Count
    labels.fileConfigName=File Crawl Config Name
    labels.fileName=File Name
    labels.handlerName=Handler Name
    labels.handlerParameter=Parameter
    labels.handlerScript=Script
    labels.popularWord=Popular Word
    labels.ignoreFailureType=Ignored Failure Type
    labels.lastAccessTime=Last Access Time
    labels.notificationTo=Notification To
    labels.num=Num
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

            shell: bash
            run: mvn site -e -B -V -Preporting
    
          - name: Upload test artifacts
            uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
            if: failure() || cancelled()
            with:
              name: ${{ github.run_number }}-full-build-artifact-${{ runner.os }}-${{ matrix.java }}
              path: '**/target/surefire-reports/*'
    
      integration-tests:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Aug 25 07:07:00 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.failureurl;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for failure URL administration API.
     */
    public class SearchBody extends BaseSearchBody {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

        }
    
        public void test_throwAndCatchException() {
            // Test throwing and catching the exception
            String expectedMessage = "Storage failure";
    
            try {
                throw new StorageException(expectedMessage);
            } catch (StorageException e) {
                assertEquals(expectedMessage, e.getMessage());
                assertNull(e.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java

                    TestIterator.staticThrowOnOpen = false; // Reset flag
                }
            });
            assertEquals("open fail", ex.getMessage());
            verify(tree, times(1)).release(); // closed on constructor failure
        }
    
        @Test
        @DisplayName("Iteration skips '.' and '..' and returns valid entries")
        void iterationSkipsDotAndDotDot() throws Exception {
            // Arrange
            stubAcquireReturnsSelf();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        }
    
        public static void staticOneArgThrowsOtherThanNpe(String s) {
          throw new FooException(); // should catch as failure
        }
    
        public static void staticOneArgShouldThrowNpeButDoesnt(String s) {
          // should catch as failure
        }
    
        public static void staticOneArgCheckForNullCorrectlyDoesNotThrowNpe(@CheckForNull String s) {
          // null?  no problem
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 47.7K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-rebalance.go

    							ignore = true
    							stopFn(0, nil)
    							break
    						}
    						failure = true
    						rebalanceLogIf(ctx, err)
    						stopFn(version.Size, err)
    						continue
    					}
    
    					stopFn(version.Size, nil)
    					failure = false
    					break
    				}
    				if ignore {
    					continue
    				}
    				if failure {
    					break // break out on first error
    				}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Sep 04 20:47:24 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/NtStatusTest.java

            // Should be an error status (0xC prefix)
            assertTrue((status & (int) 0xC0000000L) == (int) 0xC0000000L);
        }
    
        @Test
        @DisplayName("Should handle authentication failure status")
        void testAuthenticationFailureStatus() {
            // Given
            int status = NtStatus.NT_STATUS_LOGON_FAILURE;
    
            // When/Then
            assertEquals((int) 0xC000006DL, status);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            SmbTransportImpl trans1 = mock(SmbTransportImpl.class);
            SmbTransportImpl trans2 = mock(SmbTransportImpl.class);
    
            IOException firstException = new IOException("First failure");
            IOException secondException = new IOException("Second failure");
    
            when(trans1.unwrap(SmbTransportImpl.class)).thenReturn(trans1);
            when(trans1.ensureConnected()).thenThrow(firstException);
            doNothing().when(trans1).close();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
Back to top