Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for moduleDir (0.58 sec)

  1. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

      if (import_saved_model_object_graph) {
        mlir::MLIRContext context;
        auto module_or = tensorflow::SavedModelObjectGraphToMlirImport(
            input_filename, tags, exported_names, &context);
        if (!module_or.status().ok()) return 1;
    
        module_or.value()->print(output->os());
      } else if (import_saved_model_signature_defs) {
        mlir::MLIRContext context;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/ModuleExclusions.java

                    if (!anyOrganisation && !anyModule) {
                        return factory.moduleId(moduleId);
                    } else if (!anyModule) {
                        return factory.module(moduleId.getName());
                    } else if (!anyOrganisation) {
                        return factory.group(moduleId.getGroup());
                    } else {
                        return factory.everything();
                    }
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultModuleIdExclude.java

        private final ModuleIdentifier moduleId;
        private final int hashCode;
    
        static ModuleIdExclude of(ModuleIdentifier id) {
            return new DefaultModuleIdExclude(id);
        }
    
        private DefaultModuleIdExclude(ModuleIdentifier moduleId) {
            this.moduleId = moduleId;
            this.hashCode = moduleId.hashCode();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleTest.groovy

        final customGeneratedSourceFolders = [path('file://$MODULE_DIR$/generated-src'), path('file://$MODULE_DIR$/generated-test-src'), path('file://$MODULE_DIR$/generated-resource'), path('file://$MODULE_DIR$/generated-test-resource')] as LinkedHashSet
        final customExcludeFolders = [path('file://$MODULE_DIR$/target')] as LinkedHashSet
        final customDependencies = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/top-level.iml.xml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.iml.xml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.iml.xml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/ModuleAtRepositoryKey.java

    import org.gradle.api.artifacts.ModuleIdentifier;
    
    class ModuleAtRepositoryKey {
        final String repositoryId;
        final ModuleIdentifier moduleId;
    
        ModuleAtRepositoryKey(String repositoryId, ModuleIdentifier moduleId) {
            this.repositoryId = repositoryId;
            this.moduleId = moduleId;
        }
    
        @Override
        public boolean equals(Object o) {
            if (!(o instanceof ModuleAtRepositoryKey)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultModuleDependencySpec.java

               }
           }
    
           private void setValuesFromModuleId(String moduleId) {
               String[] components = moduleId.split(":");
               if (components.length < 2 || components.length > 3 || isNullOrEmpty(components[0]) || isNullOrEmpty(components[1])) {
                   throw illegalNotation(moduleId);
               }
               group(components[0]).module(components[1]);
               if (components.length > 2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultIvyPatternMatcherExcludeRuleSpec.java

            this.moduleId = moduleId;
            this.ivyArtifactName = artifact;
            this.matcher = PatternMatchers.getInstance().getMatcher(matcher);
            isArtifactExclude = ivyArtifactName != null;
            hashCode = Objects.hashCode(moduleId, ivyArtifactName, matcher, isArtifactExclude);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top