Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,869 for message2 (0.28 sec)

  1. src/main/resources/fess_message_en.properties

    constraints.Future.message      = {item} must be in the future.
    constraints.Max.message         = {item} must be less than or equal to {value}.
    constraints.Min.message         = {item} must be greater than or equal to {value}.
    constraints.NotNull.message     = {item} may not be null.
    constraints.Null.message        = {item} must be null.
    constraints.Past.message        = {item} must be in the past.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    constraints.Future.message      = {item} must be in the future.
    constraints.Max.message         = {item} must be less than or equal to {value}.
    constraints.Min.message         = {item} must be greater than or equal to {value}.
    constraints.NotNull.message     = {item} may not be null.
    constraints.Null.message        = {item} must be null.
    constraints.Past.message        = {item} must be in the past.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/conflict.go

    	sort.Strings(uniqueManagers)
    
    	messages := []string{}
    	for _, manager := range uniqueManagers {
    		messages = append(messages, fmt.Sprintf("conflicts with %v:", printManager(manager)))
    		for _, path := range m[manager] {
    			messages = append(messages, fmt.Sprintf("- %v", path))
    		}
    	}
    	return fmt.Sprintf("Apply failed with %d conflicts: %s", len(conflicts), strings.Join(messages, "\n"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. docs_src/websockets/tutorial003.py

            </form>
            <ul id='messages'>
            </ul>
            <script>
                var client_id = Date.now()
                document.querySelector("#ws-id").textContent = client_id;
                var ws = new WebSocket(`ws://localhost:8000/ws/${client_id}`);
                ws.onmessage = function(event) {
                    var messages = document.getElementById('messages')
                    var message = document.createElement('li')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Aug 09 13:52:19 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_de.properties

    constraints.Future.message      = {item} muss in der Zukunft liegen.
    constraints.Max.message         = {item} muss kleiner oder gleich {value} sein.
    constraints.Min.message         = {item} muss größer oder gleich {value} sein.
    constraints.NotNull.message     = {item} darf nicht leer sein.
    constraints.Null.message        = {item} muss leer sein.
    constraints.Past.message        = {item} muss in der Vergangenheit liegen.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/diag/messages_test.go

    		MockResource("B"),
    		"A",
    	)
    	fifthMsg := NewMessage(
    		NewMessageType(Warning, "B1", "Template: %q"),
    		MockResource("B"),
    		"B",
    	)
    
    	msgs := Messages{fifthMsg, fourthMsg, thirdMsg, secondMsg, firstMsg}
    	expectedMsgs := Messages{firstMsg, secondMsg, thirdMsg, fourthMsg, fifthMsg}
    
    	msgs.Sort()
    
    	g.Expect(msgs).To(Equal(expectedMsgs))
    }
    
    func TestMessages_SortWithNilOrigin(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

            return daemon;
        }
    
        @Override
        public void dispatch(Message message) throws DaemonConnectionException {
            LOG.debug("thread {}: dispatching {}", Thread.currentThread().getId(), message.getClass());
            try {
                dispatchLock.lock();
                try {
                    connection.dispatch(message);
                    connection.flush();
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

                try {
                    fileAuthService.delete(entity);
                    saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL));
                } catch (final Exception e) {
                    logger.warn("Failed to process a request.", e);
                    throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToDeleteCrudTable(GLOBAL, buildThrowableMessage(e)));
                }
            }).orElse(() -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

    import com.intellij.openapi.project.Project
    import com.intellij.util.messages.MessageBus
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTopics
    
    /**
     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
     * Analysis API topics ([KotlinModificationTopics]), the message bus provided by [getMessageBus] should be used, not the [Project]'s message bus.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/SynchronizedDispatchConnection.java

        }
    
        public void dispatchAndFlush(T message) {
            if (!(message instanceof OutputMessage)) {
                LOGGER.debug("thread {}: dispatching {}", Thread.currentThread().getId(), message);
            }
            lock.lock();
            try {
                if (dispatching) {
                    // Safety check: dispatching a message should not cause the thread to dispatch another message (eg should not do any logging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top