Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 962 for failure (0.18 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractService.java

          checkArgument(
              (failure != null) == (internalState == FAILED),
              "A failure cause should be set if and only if the state is failed.  Got %s and %s "
                  + "instead.",
              internalState,
              failure);
          this.state = internalState;
          this.shutdownWhenStartupFinishes = shutdownWhenStartupFinishes;
          this.failure = failure;
        }
    
        /** @see Service#state() */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 18:32:03 GMT 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_label.properties

    labels.failure_url_delete_all_confirmation=Do you really want to delete all?
    labels.failure_url_delete_all_cancel=Cancel
    labels.failure_url_error_count=Error Count
    labels.failure_url_title_details=Failure URL Details
    labels.failure_url_id=ID
    labels.failure_url_thread_name=Thread Name
    labels.failure_url_error_name=Type
    labels.failure_url_error_log=Log
    labels.failure_url_web_config_name=Web Crawling Configuration
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  3. src/main/resources/fess_label_en.properties

    labels.failure_url_delete_all_confirmation=Do you really want to delete all?
    labels.failure_url_delete_all_cancel=Cancel
    labels.failure_url_error_count=Error Count
    labels.failure_url_title_details=Failure URL Details
    labels.failure_url_id=ID
    labels.failure_url_thread_name=Thread Name
    labels.failure_url_error_name=Type
    labels.failure_url_error_log=Log
    labels.failure_url_web_config_name=Web Crawling Configuration
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      }
    
      public void testTrustedGetFailure_Failed() {
        SettableFuture<String> future = SettableFuture.create();
        Throwable failure = new Throwable();
        future.setException(failure);
        assertThat(future.tryInternalFastPathGetFailure()).isEqualTo(failure);
      }
    
      public void testTrustedGetFailure_NotCompleted() {
        SettableFuture<String> future = SettableFuture.create();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 46.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Service.java

         *
         * @param from The previous state that is being transitioned from. Failure can occur in any
         *     state with the exception of {@linkplain State#NEW NEW} or {@linkplain State#TERMINATED
         *     TERMINATED}.
         * @param failure The exception that caused the failure.
         */
        public void failed(State from, Throwable failure) {}
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 10.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.search_list_button_cancel=Abbrechen
    labels.failure_url_configuration=Fehler-URL
    labels.failure_url_search_url=URL
    labels.failure_url_search_error_count=Fehleranzahl
    labels.failure_url_search_error_name=Typ
    labels.failure_url_url=URL
    labels.failure_url_last_access_time=Letzter Zugriff
    labels.failure_url_link_list=Liste
    labels.failure_url_link_details=Details
    labels.failure_url_link_delete=Löschen
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  7. mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt

                .build()
            connection.start()
          } catch (e: IOException) {
            logger.log(Level.INFO, "Http2Server connection failure: $e")
            socket?.closeQuietly()
          } catch (e: Exception) {
            logger.log(Level.WARNING, "Http2Server unexpected failure", e)
            socket?.closeQuietly()
          }
        }
      }
    
      private fun doSsl(socket: Socket): SSLSocket {
        val sslSocket =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

    message PodFailurePolicy {
      // A list of pod failure policy rules. The rules are evaluated in order.
      // Once a rule matches a Pod failure, the remaining of the rules are ignored.
      // When no rule matches the Pod failure, the default handling applies - the
      // counter of pod failures is incremented and it is checked against
      // the backoffLimit. At most 20 elements are allowed.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

    import org.lastaflute.web.response.ApiResponse;
    import org.lastaflute.web.response.JsonResponse;
    
    /**
     * @author jflute
     */
    public class FessApiFailureHook implements ApiFailureHook { // #change_it for handling API failure
    
        private static final Logger logger = LogManager.getLogger(FessApiFailureHook.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  10. internal/mountinfo/mountinfo_linux_test.go

    package mountinfo
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    // Tests cross device mount verification function, for both failure
    // and success cases.
    func TestCrossDeviceMountPaths(t *testing.T) {
    	successCase := `/dev/0 /path/to/0/1 type0 flags 0 0
    		/dev/1    /path/to/1   type1	flags 1 1
    		/dev/2 /path/to/1/2 type2 flags,1,2=3 2 2
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 7.3K bytes
    - Viewed (0)
Back to top