Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for test_ir (0.33 sec)

  1. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/platform/base/PlatformBaseSpecification.groovy

    import spock.lang.Specification
    
    abstract class PlatformBaseSpecification extends Specification {
        @Rule
        TestNameTestDirectoryProvider testDir = new TestNameTestDirectoryProvider(getClass())
    
        final def project = TestUtil.create(testDir).rootProject()
        @Rule SetRuleContext setContext = new SetRuleContext()
    
        def realize(String name) {
            project.modelRegistry.find(name, ModelType.UNTYPED)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

        }
    
        void setup() {
            initConfiguration()
    
            testDir = temporaryFolder.testDirectory
            distributionDir = new TestFile(testDir, 'someDistPath')
            gradleHomeDir = new TestFile(distributionDir, 'gradle-0.9')
            zipStore = new File(testDir, 'zips')
            zipDestination = new TestFile(zipStore, zipFileName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

            assertTrue(content.contains("ใƒ†ใ‚นใƒˆ"));
        }
    
        public void test_getText_ooow_as() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test_as.odt");
            Map<String, String> params = new HashMap<String, String>();
            params.put("resourceName", "test_as.odt");
            ExtractData extractData = jodExtractor.getText(in, params);
            String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

        boolean disableConsistentWorkspaceIdCheck
        boolean disableConsistentUserIdCheck
    
        ScopeIdsFixture(GradleExecuter executer, TestDirectoryProvider testDir) {
            super(executer, testDir)
        }
    
        int getBuildCount() {
            idsOfBuildTrees.size()
        }
    
        List<ScopeIds> getIds() {
            idsOfBuildTrees.collect { it.get(":") }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cunit/CUnitTest.groovy

    import static org.gradle.model.internal.type.ModelTypes.modelMap
    
    @UsesNativeServices
    class CUnitTest extends Specification {
        @Rule
        TestNameTestDirectoryProvider testDir = new TestNameTestDirectoryProvider(getClass())
        final def project = TestUtil.create(testDir).rootProject();
    
        def "creates a test suite for each library under test"() {
            given:
            project.pluginManager.apply(CUnitConventionPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

     protected:
      EnableIrPrintingTest() : env_(tsl::Env::Default()) {
        if (!tsl::io::GetTestUndeclaredOutputsDir(&test_dir_)) {
          test_dir_ = tsl::testing::TmpDir();
        }
      }
    
      void SetUp() override {
        tsl::setenv("TF_QUANT_MLIR_DUMP_PREFIX", test_dir_.c_str(), 1);
    
        mlir::DialectRegistry dialects;
        dialects.insert<mlir::BuiltinDialect, mlir::func::FuncDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java

            File dest = new File(args[2]);
            String destDir = "";
            if (args.length > 3) {
                destDir = args[3];
            }
    
            System.out.format("=> stylesheet %s%n", stylesheet);
            System.out.format("=> source %s%n", source);
            System.out.format("=> dest %s%n", dest);
            System.out.format("=> destDir %s%n", destDir);
    
            TransformerFactory factory = TransformerFactory.newInstance();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

        @TaskAction
        def transform() {
            logging.captureStandardOutput(LogLevel.INFO)
            logging.captureStandardError(LogLevel.INFO)
    
            def destDir = destinationDirectory.get().asFile
            fs.delete {
                delete(destDir, temporaryDir)
            }
    
            def xslClasspath = classpath.plus(objects.fileCollection().from(ClasspathUtil.getClasspathForClass(XslTransformer)))
    
            fs.copy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

        TestFile testFile
        TestFile testFileLock
        TestFile testDir
        TestFile testDirLock
    
        List<Closeable> openedLocks = []
    
        def setup() {
            testFile = tmpDir.createFile("state.bin")
            testFileLock = tmpDir.file(testFile.name + ".lock")
            testDir = tmpDir.createDir("lockable-dir")
            testDirLock = tmpDir.file("${testDir.name}/${testDir.name}.lock")
    
            metaDataProvider.processIdentifier >> '123'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/ScalaCompileTest.groovy

        protected File srcDir
        protected File destDir
        protected File depCacheDir
    
        private ScalaCompile scalaCompile
        private scalaCompiler = Mock(Compiler)
    
        AbstractCompile getCompile() {
            return scalaCompile
        }
    
        @Override
        ConventionTask getTask() {
            return scalaCompile
        }
    
        def setup() {
            destDir = project.file("destDir")
            depCacheDir = project.file("depCache")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top