Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for testZip (0.38 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      mlir::RegisterAllTensorFlowDialects(registry);
      mlir::MLIRContext context(registry);
    
      llvm::SourceMgr source_mgr;
      source_mgr.AddNewSourceBuffer(
          llvm::MemoryBuffer::getMemBuffer(mlir_input, "test_ir"), llvm::SMLoc());
    
      // Parse a kernel source code into the MLIR Module.
      mlir::OwningOpRef<mlir::ModuleOp> module(
          mlir::parseSourceFile<mlir::ModuleOp>(source_mgr, &context));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

              function_name_pattern: "testFunctionInclude"
              filter_type: INCLUDE_TARGET_ANNOTATION
            }
          }
          tac_filters {
            op_filter {
              op_name_pattern: "^test_op"
            }
          }
        )",
                                            &test_tac_filters);
        tac_filters_ = &test_tac_filters;
      }
    
      if (!tac_filters_) {
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	testID := h.Sum()
    	if c.id1 == (cache.ActionID{}) {
    		c.id1 = testID
    	} else {
    		c.id2 = testID
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => %x\n", a.Package.ImportPath, id, testID)
    	}
    
    	// Load list of referenced environment variables and files
    	// from last run of testID, and compute hash of that content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. internal/bucket/replication/replication_test.go

    			prefix:         "testdir/",
    			expectedNonRec: false,
    			expectedRec:    true,
    		},
    		// case 5 - has filter with prefix and tags, here we are not matching on tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Location of temporary files for TestKit tests
    
    Tests that use the <<test_kit#test_kit, TestKit>> API used to create temporary files under the system temporary directory as defined by `java.io.tmpdir`.
    These files were used to store copies of Gradle distributions or another test-only Gradle User Home.
    
    TestKit tests will now create temporary files under the `Test` task's temporary directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    /**
     * A plugin for building java gradle plugins. Automatically generates plugin descriptors. Emits warnings for common error conditions. <p> Provides a direct integration with TestKit by declaring the
     * {@code gradleTestKit()} dependency for the test compile configuration and a dependency on the plugin classpath manifest generation task for the test runtime configuration. Default conventions can
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. android/guava/pom.xml

                <!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. -->
                <offlineLink>
                  <url>https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/</url>
                  <location>${project.basedir}/javadoc-link/jsr305</location>
                </offlineLink>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                apply plugin: 'swift-application'
                application.module = 'TestApp'
             """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(":compileDebugSwift", ":linkDebug", ":installDebug", ":assemble")
    
            file("build/obj/main/debug").assertIsDir()
            executable("build/exe/main/debug/TestApp").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Some tests utilise the 'java-gradle-plugin' and with that TestKit, some also use the 'war' plugin")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
    
        annotationProcessor(project(":internal-instrumentation-processor"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util_test.cc

    #include "tensorflow/core/framework/graph_to_functiondef.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/graph/testlib.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/public/version.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top