Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Failure (0.2 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_failure_url_error_count = "{labels.failure_url_error_count}";
    
        /** The key of the message: Failure URL Details */
        public static final String LABELS_failure_url_title_details = "{labels.failure_url_title_details}";
    
        /** The key of the message: ID */
        public static final String LABELS_failure_url_id = "{labels.failure_url_id}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_storage_file_upload_failure = "{errors.storage_file_upload_failure}";
    
        /** The key of the message: The target file is not found in Storage. */
        public static final String ERRORS_storage_file_not_found = "{errors.storage_file_not_found}";
    
        /** The key of the message: Failed to download {0}. */
        public static final String ERRORS_storage_file_download_failure = "{errors.storage_file_download_failure}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      public void testNonCancellationPropagating_failure() throws Exception {
        SettableFuture<Foo> input = SettableFuture.create();
        ListenableFuture<Foo> wrapper = nonCancellationPropagating(input);
        Throwable failure = new Throwable("thrown");
    
        assertFalse(wrapper.isDone());
        input.setException(failure);
        try {
          getDone(wrapper);
          fail();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown
         * {@code ExecutionException} will be extracted and used as the failure of the derived step.
         *
         * <p>If the combiningCallable throws any other exception, it will be used as the failure of the
         * derived step.
         *
         * <p>If an exception is thrown after the combiningCallable creates a {@code ClosingFuture},
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      public void testNonCancellationPropagating_failure() throws Exception {
        SettableFuture<Foo> input = SettableFuture.create();
        ListenableFuture<Foo> wrapper = nonCancellationPropagating(input);
        Throwable failure = new Throwable("thrown");
    
        assertFalse(wrapper.isDone());
        input.setException(failure);
        try {
          getDone(wrapper);
          fail();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    			},
    			Bucket:    roi.Bucket,
    			OpType:    replication.HealReplicationType,
    			EventType: ReplicateHealDelete,
    		}
    		// heal delete marker replication failure or versioned delete replication failure
    		if roi.ReplicationStatus == replication.Pending ||
    			roi.ReplicationStatus == replication.Failed ||
    			roi.VersionPurgeStatus == Failed || roi.VersionPurgeStatus == Pending {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  7. cmd/metrics-v2.go

    	proxiedHeadRequestsFailures         MetricName = "proxied_head_requests_failures"
    	proxiedPutTaggingRequestFailures    MetricName = "proxied_put_tagging_requests_failures"
    	proxiedGetTaggingRequestFailures    MetricName = "proxied_get_tagging_requests_failures"
    	proxiedDeleteTaggingRequestFailures MetricName = "proxied_delete_tagging_requests_failures"
    
    	freeBytes       MetricName = "free_bytes"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        val call = proxyConfig.connect(server, client, url)
        assertContent("this response comes via a secure proxy", call.execute())
        val connect = server.takeRequest()
        assertThat(connect.requestLine, "Connect line failure on proxy")
          .isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect.headers["Host"]).isEqualTo("android.com:443")
        val get = server.takeRequest()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

              call: Call,
              response: Response,
            ) {
              throw IOException("a")
            }
          },
        )
        assertThat(testLogHandler.take())
          .isEqualTo("INFO: Callback failure for call to " + server.url("/") + "...")
      }
    
      @Test
      fun connectionPooling() {
        server.enqueue(MockResponse(body = "abc"))
        server.enqueue(MockResponse(body = "def"))
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

       ([#123179](ht...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
Back to top