Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,481 for Fermat (2.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    		"The maximum size in megabytes of the audit log file before it gets rotated.")
    	fs.StringVar(&o.Format, "audit-log-format", o.Format,
    		"Format of saved audits. \"legacy\" indicates 1-line text format for each event."+
    			" \"json\" indicates structured json format. Known formats are "+
    			strings.Join(pluginlog.AllowedFormats, ",")+".")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/MediaType.java

       * <a href="https://en.wikipedia.org/wiki/BMP_file_format">Bitmap file format</a> ({@code bmp}
       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
       * The <a href="https://en.wikipedia.org/wiki/Camera_Image_File_Format">Canon Image File
       * Format</a> ({@code crw} files), a widely-used "raw image" format for cameras. It is found in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top