Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for module_ (0.15 sec)

  1. architecture/build-state-model.md

    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the elements.
    Not every module contributes to every element.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    # that provide packages (or test dependencies of packages) imported by the
    # main module. However, in Go 1.16 it selects a higher version of a
    # transitive module dependency that is not otherwise relevant to the main module.
    # As a result, Go 1.16 needs an additional checksum for the go.mod file of
    # that irrelevant dependency.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- incompatible v1.0.0
    #         |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    type Use struct {
    	Path       string // Use path of module.
    	ModulePath string // Module path in the comment.
    	Syntax     *Line
    }
    
    // ParseWork parses and returns a go.work file.
    //
    // file is the name of the file, used in positions and errors.
    //
    // data is the content of the file.
    //
    // fix is an optional function that canonicalizes module versions.
    // If fix is nil, all module versions must be canonical ([module.CanonicalVersion]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

         * For other types of [KtModule]s the provider normally shouldn't be created.
         *
         * @return a declaration provider for [ktModule] or `null` if the module cannot contain forward declarations
         */
        public abstract fun createDeclarationProvider(ktModule: KtModule): KotlinDeclarationProvider?
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

     */
    
    package org.gradle.internal.service.scopes;
    
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    
    /**
     * Can be implemented by Gradle modules to provide services in various scopes.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

            when:
            IdeaProject ideaModel = withConnection { it.action(new FetchIdeaModel()).run() }
    
            then:
            ideaModel.name == "hello-world"
            ideaModel.modules.size() == 1
    
            when:
            def nullModel = withConnection { it.action(new NullAction()).run() }
    
            then:
            nullModel == null
        }
    
        def "action classes are reused in daemon"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            }
    
            // The index provides candidates from an original module, not dangling files. If we resolve the supertypes of a candidate in the
            // context of its session, we will resolve to FIR classes from non-dangling, original modules. If `ktClass` is inside a dangling
            // file, the FIR class for `ktClass` will come from the dangling module. So we'd compare the original FIR class for the supertype
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h

            quantization_component_spec = {});
    
    // Converts a serialized StableHLO module to bfloat16 and output serialized
    // module.
    absl::StatusOr<std::string> ConvertSerializedStableHloModuleToBfloat16(
        StringRef serialized_stablehlo_module);
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateLiftQuantizableSpotsAsFunctionsPass(
        const ::stablehlo::quantization::QuantizationSpecs& quantization_specs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ModuleComponentRepositoryAccess.java

     */
    public interface ModuleComponentRepositoryAccess<T> {
        /**
         * Resolves the given dependency to a list of module versions.
         */
        void listModuleVersions(ModuleDependencyMetadata dependency, BuildableModuleVersionListingResolveResult result);
    
        /**
         * Resolves the metadata for a module component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. docs/debugging/reorder-disks/go.mod

    module github.com/minio/minio/docs/debugging/reorder-disks
    
    go 1.21
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 108 bytes
    - Viewed (0)
Back to top