Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,667 for Fermat (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                    defaultBuild = rootBuild;
                } else {
                    BuildState build = findIncludedBuild(rootDir);
                    if (build == null) {
                        throw new TaskSelectionException(String.format("Could not find included build with root directory '%s'.", rootDir));
                    }
                    defaultBuild = build;
                }
                if (projectPath != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            if (!prefix.equals("") && current.entries.size() < maxChildIndexEntries / 2) {
                throw new IOException(String.format("Too few entries found in %s", current));
            }
            if (current.entries.size() > maxChildIndexEntries) {
                throw new IOException(String.format("Too many entries found in %s", current));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * the resulting set of files.
         *
         * @implSpec Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if
         * called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
         *
         * @return The files of this configuration.
         */
        Set<File> resolve();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/MoreObjects.java

         *
         * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}).
         */
        @CanIgnoreReturnValue
        public ToStringHelper add(String name, boolean value) {
          return addUnconditionalHolder(name, String.valueOf(value));
        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

            new MetricsHtml(writer) {{
                html();
                head();
                headSection(this);
                title().text(String.format("Performance test %s", testHistory.getDisplayName())).end();
                end();
                body();
                div().id("content");
                h2().text(String.format("Test: %s", testHistory.getDisplayName())).end();
                text(getReproductionInstructions(testHistory));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/debug/dwarf/line.go

    // line number program header.
    type lnctForm struct {
    	lnct int
    	form format
    }
    
    // readLNCTFormat reads an LNCT format description.
    func (r *LineReader) readLNCTFormat() []lnctForm {
    	c := r.buf.uint8()
    	ret := make([]lnctForm, c)
    	for i := range ret {
    		ret[i].lnct = int(r.buf.uint())
    		ret[i].form = format(r.buf.uint())
    	}
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

            return false;
          }
        }
        return true;
      }
    
      private static IllegalArgumentException formatIllegalArgumentException(
          String format, Object... args) {
        return new IllegalArgumentException(String.format(Locale.ROOT, format, args));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. src/cmd/internal/src/pos.go

    func (p Pos) String() string {
    	return p.Format(true, true)
    }
    
    // Format formats a position as "filename:line" or "filename:line:column",
    // controlled by the showCol flag and if the column is known (!= 0).
    // For positions relative to line directives, the original position is
    // shown as well, as in "filename:line[origfile:origline:origcolumn] if
    // showOrig is set.
    func (p Pos) Format(showCol, showOrig bool) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                throw new AssertionError(String.format("Expected the following deprecation warnings:%n%s",
                    expectedDeprecationWarnings.stream()
                        .map(warning -> " - " + warning)
                        .collect(joining("\n"))));
            }
            if (expectedGenericDeprecationWarnings > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients_test.cc

    TEST_F(StopGradientMultiOutputTest, ValidGradAllOutputs) {
      // clang-format off
      CheckGrad({false, false, false}, test::AsTensor<int>(
        {1, 2, 3, 4, 5, 6, 7, 8,
         9, 10, 11, 12, 13, 14, 15, 16,
         17, 18, 19, 20, 21, 22, 23, 24},
        {3, 2, 4}));
      // clang-format on
    }
    
    TEST_F(StopGradientMultiOutputTest, StopGradFirstOutput) {
      // clang-format off
      CheckGrad({true, false, false}, test::AsTensor<int>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
Back to top