Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 591 for GetMessage (0.2 sec)

  1. guava-testlib/src/com/google/common/collect/testing/features/ConflictingRequirementsException.java

      }
    
      public Set<Feature<?>> getConflicts() {
        return conflicts;
      }
    
      public Object getSource() {
        return source;
      }
    
      @Override
      public String getMessage() {
        return super.getMessage() + " (source: " + source + ")";
      }
    
      private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DescriptiveChange.java

        public DescriptiveChange(String message, Object... params) {
            this.message = String.format(message, params);
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        @Override
        public String toString() {
            return getMessage();
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

                                loc != null ? loc.getLineNumber() : -1,
                                loc != null ? loc.getColumnNumber() : -1,
                                e,
                                e.getMessage(),
                                BuilderProblem.Severity.WARNING));
                    }
                }
            } catch (XmlReaderException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ManagedPropertyJavaInterOpIntegrationTest.groovy

                    @Internal
                    public abstract Property<Boolean> getFlag();
    
                    @Internal
                    public abstract Property<String> getMessage();
    
                    @Internal
                    public abstract Property<Double> getNumber();
    
                    @Internal
                    public abstract ListProperty<Integer> getList();
    
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/util/internal/NameValidatorTest.groovy

            assertForbidden(name, exception.getMessage())
    
            where:
            name << invalidNames
        }
    
        def "#objectType are not allowed to be named '#name'"() {
            when:
            domainObjectContainer.create(name)
    
            then:
            def exception = thrown(InvalidUserDataException)
            assertForbidden(name, exception.getMessage())
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 22:27:15 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsXmlFactory.java

    import org.apache.maven.settings.v4.SettingsStaxWriter;
    
    import static org.apache.maven.internal.impl.StaxLocation.getLocation;
    import static org.apache.maven.internal.impl.StaxLocation.getMessage;
    
    @Named
    @Singleton
    public class DefaultSettingsXmlFactory implements SettingsXmlFactory {
        @Override
        public Settings read(@Nonnull XmlReaderRequest request) throws XmlReaderException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/MethodHandleUtils.java

                return MethodHandles.lookup().findStatic(refc, name, methodType);
            } catch (NoSuchMethodException e) {
                throw new NoSuchMethodError(e.getMessage());
            } catch (IllegalAccessException e) {
                throw new IllegalAccessError(e.getMessage());
            }
        }
    
        public static <T> T invokeKotlinStaticDefault(Lazy<MethodHandle> handle, int mask, Object... args) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 01:37:45 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/util/LongCommandLineDetectionUtil.java

        }
    
        public static boolean hasCommandLineExceedMaxLengthException(Throwable failureCause) {
            Throwable cause = failureCause;
            do {
                if (cause.getMessage().contains(WINDOWS_LONG_COMMAND_EXCEPTION_MESSAGE) || cause.getMessage().contains(NIX_LONG_COMMAND_EXCEPTION_MESSAGE)) {
                    return true;
                }
            } while ((cause = cause.getCause()) != null);
    
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 03 12:35:59 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginResolutionException.java

        private final Plugin plugin;
    
        public PluginResolutionException(Plugin plugin, Throwable cause) {
            super(
                    "Plugin " + plugin.getId() + " or one of its dependencies could not be resolved: " + cause.getMessage(),
                    cause);
            this.plugin = plugin;
        }
    
        public PluginResolutionException(Plugin plugin, List<Exception> exceptions, Throwable cause) {
            super(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/exception/NullArgumentExceptionTest.java

            final NullArgumentException nullArgumentException = new NullArgumentException("hoge");
            assertThat(nullArgumentException.getArgName(), is("hoge"));
            assertThat(nullArgumentException.getMessage(), is("[ECL0008]argument[hoge] is null."));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testErrorMessage_en() throws Exception {
            // ## Arrange ##
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top