Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 419 for SUCCESS (0.22 sec)

  1. src/main/resources/fess_message_ru.properties

    success.failure_url_delete_all=Deleted failure urls.
    success.delete_file=Deleted {0} file.
    success.job_started=Started job {0}.
    success.job_stopped=Stopped job {0}.
    success.upload_synonym_file=Uploaded Synonym file.
    success.upload_kuromoji_file=Uploaded Kuromoji file.
    success.upload_elevate_word=Uploaded Additional Word file.
    success.upload_bad_word=Uploaded Bad Word file.
    success.upload_mapping_file=Uploaded Mapping file.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Result.java

     */
    public class Result<T> {
    
        /**
         * Success without warnings
         *
         * @param model
         */
        public static <T> Result<T> success(T model) {
            return success(model, Collections.emptyList());
        }
    
        /**
         * Success with warnings
         *
         * @param model
         * @param problems
         */
        public static <T> Result<T> success(T model, Iterable<? extends ModelProblem> problems) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    success.failure_url_delete_all=Deleted failure urls.
    success.delete_file=Deleted {0} file.
    success.job_started=Started job {0}.
    success.job_stopped=Stopped job {0}.
    success.upload_synonym_file=Uploaded Synonym file.
    success.upload_protwords_file=Uploaded Protwords file.
    success.upload_stopwords_file=Uploaded Stopwords file.
    success.upload_stemmeroverride_file=Uploaded Stemmer Override file.
    success.upload_kuromoji_file=Uploaded Kuromoji file.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  4. internal/dsync/locker.go

    type NetLocker interface {
    	// Do read lock for given LockArgs.  It should return
    	// * a boolean to indicate success/failure of the operation
    	// * an error on failure of lock request operation.
    	RLock(ctx context.Context, args LockArgs) (bool, error)
    
    	// Do write lock for given LockArgs. It should return
    	// * a boolean to indicate success/failure of the operation
    	// * an error on failure of lock request operation.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jan 18 20:44:38 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses_test.go

    			if err != nil && testCase.success {
    				t.Fatalf("Test %d: unexpected error: %v", i+1, err)
    			}
    			_, _, err = createServerEndpoints(testCase.serverAddr, srvCtxt.Layout.pools, srvCtxt.Layout.legacy)
    			if err != nil && testCase.success {
    				t.Errorf("Test %d: Expected success but failed instead %s", i+1, err)
    			}
    			if err == nil && !testCase.success {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 15.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/base/VerifyTest.java

    @GwtCompatible(emulated = true)
    public class VerifyTest extends TestCase {
      public void testVerify_simple_success() {
        verify(true);
      }
    
      public void testVerify_simple_failure() {
        try {
          verify(false);
          fail();
        } catch (VerifyException expected) {
        }
      }
    
      public void testVerify_simpleMessage_success() {
        verify(true, "message");
      }
    
      public void testVerify_simpleMessage_failure() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu May 04 09:41:29 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    	if err = xlStorage.MakeVol(context.Background(), "success-vol"); err != nil {
    		t.Fatalf("Unable to create volume, %s", err)
    	}
    	if err = xlStorage.AppendFile(context.Background(), "success-vol", "abc/def/ghi/success-file", []byte("Hello, world")); err != nil {
    		t.Fatalf("Unable to create file, %s", err)
    	}
    	if err = xlStorage.AppendFile(context.Background(), "success-vol", "abc/xyz/ghi/success-file", []byte("Hello, world")); err != nil {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ko.properties

    success.delete_file = {0} 파일을 삭제했습니다.
    success.job_started = 직업 {0}을 시작했습니다.
    success.job_stopped = 직업 {0}을 중지했습니다.
    success.upload_synonym_file = 동의어 파일을 업로드했습니다.
    success.upload_kuromoji_file = Kuromoji 파일을 업로드했습니다.
    success.upload_elevate_word = 추가 단어 파일을 업로드했습니다.
    success.upload_bad_word = 제외 단어 파일을 업로드했습니다.
    success.upload_mapping_file = 매핑 파일을 업로드했습니다.
    success.send_testmail = 테스트 이메일을 보냈습니다.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/AbstractImmutableTableTest.java

            fail();
          } catch (UnsupportedOperationException e) {
            // success
          }
        }
      }
    
      public final void testPut() {
        for (Table<Character, Integer, String> testInstance : getTestInstances()) {
          try {
            testInstance.put('a', 1, "blah");
            fail();
          } catch (UnsupportedOperationException e) {
            // success
          }
        }
      }
    
      public final void testPutAll() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Created data. */
        public static final String SUCCESS_crud_create_crud_table = "{success.crud_create_crud_table}";
    
        /** The key of the message: Updated data. */
        public static final String SUCCESS_crud_update_crud_table = "{success.crud_update_crud_table}";
    
        /** The key of the message: Deleted data. */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
Back to top