Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for sourceDir (0.38 sec)

  1. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.cc

        mlir::RegisterAllTensorFlowDialects(registry);
        context.appendDialectRegistry(registry);
        context.loadAllAvailableDialects();
      });
    
      m.def("verify", [](std::string input) {
        llvm::SourceMgr SM = llvm::SourceMgr();
        SM.AddNewSourceBuffer(llvm::MemoryBuffer::getMemBuffer(input),
                              llvm::SMLoc());
        mlir::DialectRegistry registry;
        mlir::RegisterAllTensorFlowDialects(registry);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 08:41:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

        }
    }
    // end::closure[]
    
    tasks.register("conventions") {
        val objects = objects
        doLast {
            // tag::conventions[]
            val sourceDirs = objects.fileCollection().convention("src")
            sourceDirs.from("src2")
            val sourceDirNames = sourceDirs.map { it.name }
            println("Source dirs: $sourceDirNames") // [src, src2]
            // end::conventions[]
        }
    }
    
    tasks.register("usage") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_wrapper.cc

                        mlir::shape::ShapeDialect, mlir::TFR::TFRDialect>();
        mlir::MLIRContext ctx(registry);
        ctx.loadAllAvailableDialects();
    
        llvm::SourceMgr source_mgr = llvm::SourceMgr();
        source_mgr.AddNewSourceBuffer(llvm::MemoryBuffer::getMemBuffer(input),
                                      llvm::SMLoc());
        auto module = mlir::parseSourceFile<mlir::ModuleOp>(source_mgr, &ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 13 06:54:12 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/TextResourceScriptSource.java

                this.className = initClassName();
            }
            return className;
        }
    
        private String initClassName() {
            URI sourceUri = getResource().getLocation().getURI();
            if (sourceUri != null) {
                String path = sourceUri.toString();
                return classNameFromPath(path);
            }
    
            return "script_" + hashString(resource.getText()).toCompactString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 10:24:10 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourceDistributionProvider.kt

            val sourceDirectory = "src-directory"
        }
    
        override fun sourceDirs(): Collection<File> =
            try {
                sourceDirs
            } catch (ex: Exception) {
                project.logger.warn("Unexpected exception while resolving Gradle distribution sources: ${ex.message}", ex)
                emptyList()
            }
    
        private
        val sourceDirs by lazy {
            createSourceRepository()
            registerTransforms()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProjectTest.groovy

            def implicitHeaderFiles = implicitHeaders as Set
            def sourceSet = Mock(HeaderExportingSourceSet)
            def sourceDirs = Mock(SourceDirectorySet)
            1 * sourceSet.exportedHeaders >> sourceDirs
            1 * sourceDirs.files >> exportedHeaderFiles
            def implicitHeaderSet = Mock(SourceDirectorySet)
            1 * sourceSet.implicitHeaders >> implicitHeaderSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/DownloadedUriTextResource.java

        private final String contentType;
        private final File downloadedResource;
    
        public DownloadedUriTextResource(String description, URI sourceUri, String contentType, File downloadedResource, RelativeFilePathResolver resolver) {
            super(description, sourceUri, resolver);
            this.contentType = contentType;
            this.downloadedResource = downloadedResource;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/init_windows.go

    func (o *Options) addOSFlags(fs *pflag.FlagSet) {
    	fs.BoolVar(&o.WindowsService, "windows-service", o.WindowsService, "Enable Windows Service Control Manager API integration")
    	fs.StringVar(&o.config.Winkernel.SourceVip, "source-vip", o.config.Winkernel.SourceVip, "The IP address of the source VIP for non-DSR.")
    	fs.StringVar(&o.config.Winkernel.NetworkName, "network-name", o.config.Winkernel.NetworkName, "The name of the cluster network.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_TFLITE_IMPORT_EXPORT_H_
    
    #include <memory>
    #include <string>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "llvm/Support/SourceMgr.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/tac_importer_exporter.h"
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    // TAC Importer for TFLite.
    // This import to MLIR from tflite file or MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/cpp_generator_test.cc

    namespace generator {
    namespace {
    
    TEST(CppGeneratorTest, typical_usage) {
      string category = "testing";
      string name_space = "tensorflow::ops";
      string output_dir = "tensorflow/c/experimental/ops/gen/cpp/golden";
      string source_dir = "tensorflow";
      string api_dirs = "";
      std::vector<string> ops = {
          "Neg",        // Simple unary Op
          "MatMul",     // 2 inputs & attrs with default values
          "IdentityN",  // Variadic input+output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 18 17:02:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top