Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,870 for message1 (0.14 sec)

  1. maven-settings-builder/src/test/java/org/apache/maven/settings/validation/DefaultSettingsValidatorTest.java

            assertEquals(4, problems.messages.size());
            assertContains(problems.messages.get(0), "'mirrors.mirror.id' must not be 'local'");
            assertContains(problems.messages.get(1), "'mirrors.mirror.url' for local is missing");
            assertContains(problems.messages.get(2), "'mirrors.mirror.mirrorOf' for local is missing");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

         * and providing a {@code message}.
         */
        public MojoException(String message, Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new {@code MojoException} providing a {@code message}.
         */
        public MojoException(String message) {
            super(message);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

    public abstract class Cast {
    
        /**
         * Casts the given object to the given type, providing a better error message than the default.
         *
         * The standard {@link Class#cast(Object)} method produces unsatisfactory error messages on some platforms
         * when it fails. All this method does is provide a better, consistent, error message.
         *
         * This should be used whenever there is a chance the cast could fail. If in doubt, use this.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_activity.proto

      // A histogram of the TF operations that were not clustered.
      repeated OpAndCount unclustered_op_histogram = 4;
    }
    
    // Listeners listening for auto clustering events get messages of this type.
    //
    // Next ID: 4
    message XlaAutoClusteringActivity {
      // The value of GlobalJitLevel, as determined by `GetGlobalJitLevelForGraph`.
      // This determines if global auto-clustering is enabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/TestConnection.groovy

        void dispatch(InterHubMessage message) {
            outgoingBuffered.put(message)
        }
    
        @Override
        void flush() {
            outgoingBuffered.drainTo(outgoing)
        }
    
        @Override
        InterHubMessage receive() {
            def message = incoming.take()
            return message == END ? null : (InterHubMessage) message
        }
    
        /**
         * Queues the given message to return from {@link #receive()}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pkg/log/scope.go

    func (s *Scope) WarnEnabled() bool {
    	return s.GetOutputLevel() >= WarnLevel
    }
    
    // Info outputs a message at info level.
    func (s *Scope) Info(msg any) {
    	if s.GetOutputLevel() >= InfoLevel {
    		s.emit(zapcore.InfoLevel, fmt.Sprint(msg))
    	}
    }
    
    // Infof uses fmt.Sprintf to construct and log a message at info level.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

         *
         * <p>Error messages are normalized to use new-line char as line separator.
         *
         * @return this
         */
        ExecutionFailure assertHasFailure(String description, Consumer<? super Failure> action);
    
        /**
         * Asserts that there is a failure present with the given cause (ie the bit after the description).
         *
         * <p>Error messages are normalized to use new-line char as line separator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java

        }
    
        // DELETE /api/admin/suggest/all
        @Execute
        public JsonResponse<ApiResult> delete$all() {
            if (!suggestHelper.deleteAllWords()) {
                throwValidationErrorApi(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL));
            }
            return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result());
        }
    
        // DELETE /api/admin/suggest/document
        @Execute
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // a single websocket.
    //
    // "channel.k8s.io"
    //
    // The Websocket RemoteCommand subprotocol "channel.k8s.io" prepends each binary message with a
    // byte indicating the channel number (zero indexed) the message was sent on. Messages in both
    // directions should prefix their messages with this channel byte. Used for remote execution,
    // the channel numbers are by convention defined to match the POSIX file-descriptors assigned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

                }
            }
    
            def found = messages.any { message -> spec.output.contains(message) }
            assert found: "could not find expected invalidation reason in output. expected: ${messages}"
        }
    
        private void assertNothingConfigured() {
            def configuredProjects = buildOperations.all(ConfigureProjectBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top