Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for module_ (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

        }
    
        private Set<Module> allRequiredModulesOf(String... names) {
            Set<Module> modules = new HashSet<>();
            for (String name : names) {
                modules.addAll(moduleRegistry.getModule(name).getAllRequiredModules());
            }
            return modules;
        }
    
        private Set<Module> allRequiredModulesOfOptional(String moduleName) {
            Module optionalModule = moduleRegistry.findModule(moduleName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/debug/buildinfo/buildinfo.go

    // license that can be found in the LICENSE file.
    
    // Package buildinfo provides access to information embedded in a Go binary
    // about how it was built. This includes the Go toolchain version, and the
    // set of modules used (for binaries built in module mode).
    //
    // Build information is available for the currently running binary in
    // runtime/debug.ReadBuildInfo.
    package buildinfo
    
    import (
    	"bytes"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

                return
            }
            def module = mavenHttpRepo.module('group', 'publish', '1')
    
            module.withoutExtraChecksums()
    
            // module is published
            module.publish()
    
            // module will be published a second time via 'maven-publish'
            module.artifact.expectPublish(false)
            module.pom.expectPublish(false)
            module.rootMetaData.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/serialization/SchemaSerialization.kt

    package org.gradle.internal.declarativedsl.serialization
    
    import kotlinx.serialization.encodeToString
    import kotlinx.serialization.json.Json
    import kotlinx.serialization.modules.SerializersModule
    import kotlinx.serialization.modules.polymorphic
    import kotlinx.serialization.modules.subclass
    import org.gradle.declarative.dsl.schema.AnalysisSchema
    import org.gradle.declarative.dsl.schema.ConfigureAccessor
    import org.gradle.declarative.dsl.schema.DataClass
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    	}
    }
    
    // preloadRootModules loads the module requirements needed to identify the
    // selected version of each module providing a package in rootPkgs,
    // adding new root modules to the module graph if needed.
    func (ld *loader) preloadRootModules(ctx context.Context, rootPkgs []string) (changedBuildList bool) {
    	needc := make(chan map[module.Version]bool, 1)
    	needc <- map[module.Version]bool{}
    	for _, path := range rootPkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. pkg/ctrlz/ctrlz.go

    	baseLayout = template.Must(baseLayout.Parse("{{ define \"instance\" }}" + instance + "{{ end }}"))
    	_ = augmentLayout(baseLayout, "templates/modules/header.html")
    	_ = augmentLayout(baseLayout, "templates/modules/sidebar.html")
    	_ = augmentLayout(baseLayout, "templates/modules/last-refresh.html")
    	mainLayout := augmentLayout(template.Must(baseLayout.Clone()), "templates/layouts/main.html")
    
    	router := mux.NewRouter()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    import gradlebuild.integrationtests.createTestTask
    import gradlebuild.integrationtests.setSystemPropertiesOfTestJVM
    
    plugins {
        java
        id("gradlebuild.module-identity")
        id("gradlebuild.dependency-modules")
    }
    
    val sourceSet = addSourceSet(TestType.CROSSVERSION)
    addDependenciesAndConfigurations(TestType.CROSSVERSION.prefix)
    createQuickFeedbackTasks()
    createAggregateTasks(sourceSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    If a module was published with Gradle Module Metadata, the metadata is likely complete although there can still be cases where something is just plainly wrong.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * @return requires a project
         */
        boolean projectRequired() default true;
    
        /**
         * if the Mojo uses the Maven project and its child modules.
         * @return uses the Maven project and its child modules
         */
        boolean aggregator() default false;
    
        /**
         * does this Mojo need to be online to be executed?
         * @return need to be online
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultTypeProvider.java

                    // Java types
                    new DefaultType(
                            Type.JAR, Language.JAVA_FAMILY, "jar", null, false, JavaPathType.CLASSES, JavaPathType.MODULES),
                    new DefaultType(Type.JAVADOC, Language.JAVA_FAMILY, "jar", "javadoc", false, JavaPathType.CLASSES),
                    new DefaultType(Type.JAVA_SOURCE, Language.JAVA_FAMILY, "jar", "sources", false),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top