Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,485 for corerest (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    // rewrite the graph to use pipelining for better device utilization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizer.groovy

            "(Scala Compiler interface compilation took ([0-9]+ hrs )?([0-9]+ mins )?[0-9.]+ secs\n\n)" +
                "|(\\[Warn] : -target is deprecated: Use -release instead to compile against the correct platform API.\none warning found\n\n)",
            Pattern.MULTILINE
        )
    
        @Override
        String normalize(String output, ExecutionMetadata executionMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/BUILD

        ],
        defines = if_llvm_x86_available(["TF_LLVM_X86_AVAILABLE=1"]),
        deps = [
            ":tfcompile_lib",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",  # fixdeps: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/CompositeCleanupActionTest.groovy

            getBaseDir() >> temporaryFolder.getTestDirectory()
            getDisplayName() >> "My Cache"
        }
        def progressMonitor = Stub(CleanupProgressMonitor)
    
        def "calls configured cleanup actions for correct dirs"() {
            given:
            def firstCleanupAction = Mock(CleanupAction)
            def secondCleanupAction = Mock(CleanupAction)
            def subDir = temporaryFolder.file("subDir")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/value.go

    // value name associated with an open key k. It also returns the value's type.
    // If value does not exist, GetStringValue returns ErrNotExist.
    // If value is not SZ or EXPAND_SZ, it will return the correct value
    // type and ErrUnexpectedType.
    func (k Key) GetStringValue(name string) (val string, valtype uint32, err error) {
    	data, typ, err2 := k.getValue(name, make([]byte, 64))
    	if err2 != nil {
    		return "", typ, err2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

     * The special provider is necessary because forward declarations are mere qualified names by themselves.
     * It is a responsibility of the implementor to make the source representation correct.
     * Symbol's properties are not affected by its source representation.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishEarIntegTest.groovy

            run "publish"
    
            then: "module is published with artifacts"
            def ivyModule = ivyRepo.module("org.gradle.test", "publishEar", "1.9")
            ivyModule.assertPublishedAsEarModule()
    
            and: "correct configurations and dependencies declared"
            with(ivyModule.parsedIvy) {
                configurations.keySet() == ["default", "master"] as Set
                configurations.default.extend == ["master"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/eventbus/outside/AbstractEventBusTest.java

    import com.google.common.eventbus.EventBus;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Abstract base class for tests that EventBus finds the correct subscribers.
     *
     * <p>The actual tests are distributed among the other classes in this package based on whether they
     * are annotated or abstract in the superclass.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/net/sockopt_windows.go

    	// a socket to forcibly bind to a port in use by another socket.
    	// This could lead to a non-deterministic behavior, where
    	// connection requests over the port cannot be guaranteed
    	// to be handled by the correct socket.
    	return nil
    }
    
    func setDefaultMulticastSockopts(s syscall.Handle) error {
    	// Allow multicast UDP and raw IP datagram sockets to listen
    	// concurrently across multiple listeners.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.5K bytes
    - Viewed (0)
Back to top