Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 282 for module$ (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                        outstr.writeUTF(entry.toString());
                    }
                    // We do not serialize the module path. Instead, implementation modules are directly added to the application module path when
                    // starting the worker process. Implementation modules are hidden to the application modules by module visibility.
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.h

    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Given an MLIR module, returns a GraphDef.
    absl::StatusOr<std::unique_ptr<GraphDef>> ConvertMlirToGraphdef(
        mlir::ModuleOp module, const GraphExportConfig& configs);
    
    // Converts an MLIR module to TensorFlow graph and FunctionLibraryDefinition.
    // The "main" function of the module is stored in the graph and the rest of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                    }
                    modules {
                        module("org:baz") {
                            replacedBy("org:foo")
                        }
                    }
                }
            """
    
            when:
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org:bar:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/ExternalDependencyDescriptorTest.groovy

    abstract class ExternalDependencyDescriptorTest extends Specification {
        ModuleComponentSelector requested = DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId("org", "module"), v("1.2+"))
        def id = DefaultModuleVersionIdentifier.newId("org", "module", "1.2+")
    
        static VersionConstraint v(String version) {
            new DefaultMutableVersionConstraint(version)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAbbreviatedTypeTest.kt

     * the expansion-site module instead of the use-site module in these tests, as we want to check the `KaType` when it's built with an
     * expanded type from a library vs. from a source module. (Abbreviated types from libraries and from sources aren't necessarily constructed
     * in the same way.)
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * does not imply the corresponding module-level event. Similarly, publishing a module state modification event does not imply out-of-block
     * modification.
     *
     * Global modification events are published when it's not feasible or desired to publish events for a single module, or a limited set of
     * modules. For example, a change in the environment such as removing an SDK might affect all modules, so a global event is more
     * appropriate.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    # Tensorflow SavedModel to StableHLO (tf-to-stablehlo-translate)
    
    Converts TensorFlow models (SavedModel or MLIR module) to StableHLO MLIR
    modules, preserving model structure and signatures. It enables seamless
    integration of TensorFlow models into MLIR-based compiler frameworks for further
    optimization and deployment.
    
    ## C++ APIs
    
    ```bash
    tf-to-stablehlo-translate \
        --input-path=/path/to/model \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

         *
         * The module structure and source code of all source [KtModule]s in the project should be considered modified when this event is
         * received. This includes source files being moved or removed, and source modules possibly being removed. Thus, all caches related to
         * source module structure and source code should be invalidated.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      // Parse a kernel source code into the MLIR Module.
      mlir::OwningOpRef<mlir::ModuleOp> module(
          mlir::parseSourceFile<mlir::ModuleOp>(source_mgr, &context));
      CHECK(module) << "failed to parse mlir module";
    
      // Collect all diagnostics emitted while lowering parsed kernel module.
      std::string diagnostic_str;
      llvm::raw_string_ostream os(diagnostic_str);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         *
         * The module structure, source code, and binary content of all [KtModule]s in the project should be considered modified when this event
         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
Back to top