Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for moduleDir (0.21 sec)

  1. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

      if (saved_model_version == 2) {
        auto module_or = SavedModelObjectGraphToMlirImport(
            input_filename, tags, exported_names, context,
            /*unconditionally_use_set_output_shapes=*/true);
        if (!module_or.status().ok()) return module_or.status();
        return std::move(module_or).value();
      } else if (saved_model_version == 1) {
        MLIRImportOptions options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                ModuleComponentSelector requested = dependency.getSelector();
                final ModuleIdentifier moduleId = requested.getModuleIdentifier();
                ModuleVersionsCache.CachedModuleVersionList cachedModuleVersionList = moduleVersionsCache.getCachedModuleResolution(delegate, moduleId);
                if (cachedModuleVersionList != null) {
                    Set<String> versionList = cachedModuleVersionList.getModuleVersions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

                return Collections.emptySet();
            }
    
            ModuleComponentIdentifier moduleId = (ModuleComponentIdentifier) module.getId();
            IvyArtifactName ivyArtifactName = new DefaultIvyArtifactName(moduleId.getModule(), type, "jar", classifier);
    
            ModuleComponentArtifactMetadata artifact = new DefaultModuleComponentArtifactMetadata(moduleId, ivyArtifactName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                } else {
                    // we need to make sure the variants we consider provide the implicit capability
                    result = containsImplicitCapability(capabilities, moduleId.getGroup(), moduleId.getName());
                }
                if (result.matches) {
                    if (lenient || result == MatchResult.EXACT_MATCH) {
                        builder.add(variant);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            expect:
            def config = state.getConfiguration("child").metadata
            def excludes = config.excludes
            config.excludes*.moduleId.group == ["group2", "group1"]
            config.excludes*.moduleId.name == ["module2", "module1"]
            config.excludes.is(excludes)
        }
    
        def artifactName() {
            return new DefaultIvyArtifactName("artifact", "type", "ext")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			line, mod = line[:i], line[i+1:]
    		}
    		if i := bytes.Index(line, slashSlash); i >= 0 {
    			line = line[:i]
    		}
    		line = bytes.TrimSpace(line)
    		if !bytes.HasPrefix(line, moduleStr) {
    			continue
    		}
    		line = line[len(moduleStr):]
    		n := len(line)
    		line = bytes.TrimSpace(line)
    		if len(line) == n || len(line) == 0 {
    			continue
    		}
    
    		if line[0] == '"' || line[0] == '`' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        override fun onChangingModuleResolve(moduleId: ModuleComponentIdentifier, expiry: Expiry) {
            val expireAt = host.buildStartTime + expiry.keepFor.toMillis()
            onChangingValue(ConfigurationCacheFingerprint.ChangingModule(moduleId.displayName, expireAt))
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/syscall_windows.go

    const (
    	// flags for CreateToolhelp32Snapshot
    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    )
    
    const MAX_MODULE_NAME32 = 255
    
    type ModuleEntry32 struct {
    	Size         uint32
    	ModuleID     uint32
    	ProcessID    uint32
    	GlblcntUsage uint32
    	ProccntUsage uint32
    	ModBaseAddr  uintptr
    	ModBaseSize  uint32
    	ModuleHandle syscall.Handle
    	Module       [MAX_MODULE_NAME32 + 1]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top