Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 756 for covers (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    // need/usage. File a bug to request porting over additional fusions.
    
    // TODO(b/158265178): Support GPU-specific fusions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

            outputContains("EVENT: finish :a:thing")
            outputContains("EVENT: finish :b:thing")
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "already covers CC")
        def "listener is not discarded after configuration phase when used with configuration cache"() {
            listenerReceivedConfigurationTimeData()
            registeringPlugin()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    <6> Set the plugin name in human-readable form.
    <7> Set a description to be displayed on the portal. It provides useful information to people who want to use your plugin.
    <8> Specifies the categories your plugin covers. It makes the plugin more likely to be discovered by people needing its functionality.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/util/iptables/testing/parse.go

    		if t.Chains[i].Name == chain {
    			return &t.Chains[i], nil
    		}
    	}
    	return nil, fmt.Errorf("no such chain %q", chain)
    }
    
    // Rule represents a single parsed IPTables rule. (This currently covers all of the rule
    // types that we actually use in pkg/proxy/iptables or pkg/proxy/ipvs.)
    //
    // The parsing is mostly-automated based on type reflection. The `param` tag on a field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/context.go

    // that this is a rune with a XOR pattern defined.
    func (c *context) copyXOR() bool {
    	if !c.copy() {
    		return false
    	}
    	if c.info&xorIndexBit == 0 {
    		// Fast path for 6-bit XOR pattern, which covers most cases.
    		c.dst[c.pDst-1] ^= byte(c.info >> xorShift)
    	} else {
    		// Interpret XOR bits as an index.
    		// TODO: test performance for unrolling this loop. Verify that we have
    		// at least two bytes and at most three.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    ====
    
    [[sec:excluding-transitive-deps]]
    == Excluding transitive dependencies
    
    While the previous section showed how you can enforce a certain version of a transitive dependency, this section covers _excludes_ as a way to remove a transitive dependency completely.
    
    [WARNING]
    ====
    Similar to forcing a version of a dependency, excluding a dependency completely requires a conscious decision.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

         *
         * Generates random UUID string based versions and tries to sort them. While this test is not as reliable
         * as {@link #testCompareUuidVersionStringStream()}, it covers broader range and in case it fails it records
         * the failed array, so we can investigate more.
         */
        @Test
        void testCompareUuidRandom() {
            for (int j = 0; j < 32; j++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    )
    
    // This file contains a port of the reference implementation of the
    // Bidi Parentheses Algorithm:
    // https://www.unicode.org/Public/PROGRAMS/BidiReferenceJava/BidiPBAReference.java
    //
    // The implementation in this file covers definitions BD14-BD16 and rule N0
    // of UAX#9.
    //
    // Some preprocessing is done for each rune before data is passed to this
    // algorithm:
    //  - opening and closing brackets are identified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

     *
     * @author mike nonemacher
     */
    
    public class PopulatedCachesTest extends TestCase {
      // we use integers as keys; make sure the range covers some values that ARE cached by
      // Integer.valueOf(int), and some that are not cached. (127 is the highest cached value.)
      static final int WARMUP_MIN = 120;
      static final int WARMUP_MAX = 135;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "executable"     | "over java extension"        | null     | null         | "other"        | "current"         | "other"
            "java home"      | "over java extension"        | null     | "other"      | null           | "current"         | "other"
            "assigned tool"  | "over java extension"        | "other"  | null         | null           | "current"         | "other"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top