Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,667 for Fermat (0.13 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

            if (actual < expected - 200) {
                throw new RuntimeException(String.format(
                        "Action did not block for expected time. Expected ~ %d ms, was %d ms.", expected, actual));
            }
            if (actual > expected + 1200) {
                throw new RuntimeException(String.format(
                        "Action did not complete within expected time. Expected ~ %d ms, was %d ms.", expected, actual));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.go

    // and records the text in the error log.
    func (c *common) Log(args ...any) { c.log(fmt.Sprintln(args...)) }
    
    // Logf formats its arguments according to the format, analogous to Printf(),
    // and records the text in the error log.
    func (c *common) Logf(format string, args ...any) { c.log(fmt.Sprintf(format, args...)) }
    
    // Error is equivalent to Log() followed by Fail().
    func (c *common) Error(args ...any) {
    	c.log(fmt.Sprintln(args...))
    	c.Fail()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                    return format("Process '%s' could not be started because the command line exceed operating system limits.", displayName);
                }
                return format("A problem occurred starting process '%s'", displayName);
            }
            return format("A problem occurred waiting for process '%s' to complete.", displayName);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

                    if (!Objects.equals(signature, existingSignature)) {
                        throw new OptionValidationException(String.format("@Option '%s' linked to multiple elements in class '%s'.",
                            optionElement.getOptionName(), target.getClass().getName()));
                    }
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        }
    
        @Override
        public <T> void setPrivateData(ModelType<? super T> type, T object) {
            if (!isMutable()) {
                throw new IllegalStateException(String.format("Cannot set value for model element '%s' as this element is not mutable.", getPath()));
            }
            this.privateDataType = type;
            this.privateData = object;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            assertThat(this.problems.size(), equalTo(count));
            if (count == 1) {
                assertThat(summary, equalTo("Build failed with an exception."));
            } else {
                assertThat(summary, equalTo(String.format("Build completed with %s failures.", count)));
            }
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasCause(String description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

        protected static Date toDate(final String str, final Locale locale) {
            for (final DateFormat format : iterable(new DateFormatIterator(locale), new PlainDateFormatIterator(str, locale))) {
                if (format == null) {
                    continue;
                }
                final Date date = toDate(str, format);
                if (date != null) {
                    return date;
                }
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            public String getInstanceDisplayName() {
                return String.format("Tool chain '%s' (Swiftc)", getId());
            }
    
            @Override
            public String getBuildScriptConfig() {
                String config = String.format("%s(%s)\n", getId(), getImplementationClass());
                for (File pathEntry : getPathEntries()) {
                    config += String.format("%s.path file('%s')\n", getId(), pathEntry.toURI());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

            }
            for (Map.Entry<String, String> entry : lines.entrySet()) {
                if (entry.getValue().length() == 0) {
                    formatter.format("%s%n", entry.getKey());
                } else {
                    formatter.format("%-" + max + "s  %s%n", entry.getKey(), entry.getValue());
                }
            }
            formatter.flush();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess/doc.json

          "content_length": {
            "type": "long"
          },
          "created": {
            "type": "date",
            "format": "date_optional_time"
          },
          "timestamp": {
            "type": "date",
            "format": "date_optional_time"
          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top