Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 280 for module_ (0.13 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

        }
    
        @Override
        public Module getModule(String name) {
            Module module = modules.get(name);
            if (module == null) {
                module = loadModule(name);
                modules.put(name, module);
            }
            return module;
        }
    
        @Override
        @Nullable
        public Module findModule(String name) {
            Module module = modules.get(name);
            if (module == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. cluster/gce/manifests/kube-proxy.manifest

        - mountPath: /var/lib/kube-proxy/kubeconfig
          name: kubeconfig
          readOnly: false
        - mountPath: /run/xtables.lock
          name: iptableslock
          readOnly: false
        - mountPath: /lib/modules
          name: lib-modules
          readOnly: true
      volumes:
      - hostPath:
          path: /usr/share/ca-certificates
        name: usr-ca-certs
      - hostPath:
          path: /etc/ssl/certs
        name: etc-ssl-certs
      - hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. cluster/addons/kube-network-policies/kube-network-policies.yaml

            - mountPath: /var/log
              name: varlog
              readOnly: false
            - mountPath: /lib/modules
              name: lib-modules
              readOnly: true
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: lib-modules
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

            def result = newResolutionResult(root)
    
            when:
            def deps = []
            def modules = []
            result.allDependencies { deps << it }
            result.allComponents { modules << it }
    
            then:
            deps*.requested.group == ['dep1', 'dep3', 'dep2', 'dep3']
    
            and:
            modules*.id.group == ['root', 'dep1', 'dep3', 'dep2']
        }
    
        def "deals with dependency cycles"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/LenientPlatformGraphResolveState.java

                List<String> candidateVersions = platformState.getCandidateVersions();
                Set<ModuleResolveState> modules = platformState.getParticipatingModules();
                for (ModuleResolveState module : modules) {
                    ComponentState selected = module.getSelected();
                    if (selected != null) {
                        String componentVersion = selected.getId().getVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/classpath/PluginModuleRegistry.java

    import java.util.Set;
    
    /**
     * A registry of dynamically loaded plugin modules.
     */
    @ServiceScope(Scope.Global.class)
    public interface PluginModuleRegistry {
        /**
         * Plugin modules exposed in the Gradle API.
         */
        Set<Module> getApiModules();
    
        /**
         * Plugin modules exposed to the Gradle runtime only.
         */
        Set<Module> getImplementationModules();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/import.go

    	} else {
    		return "", false, nil
    	}
    
    	// Check that there aren't other modules in the way.
    	// This check is unnecessary inside the module cache
    	// and important to skip in the vendor directory,
    	// where all the module trees have been overlaid.
    	// So we only check local module trees
    	// (the main module, and any directory trees pointed at by replace directives).
    	if isLocal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r212/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_2
            ideaProject.modules.find { it.name == 'child3' }.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            def allNames = project.modules*.name
            allNames.unique().size() == 6
    
            IdeaModule impl = project.modules.find { it.name == 'root-impl' }
            IdeaModule contribImpl = project.modules.find { it.name == 'contrib-impl' }
    
            impl.dependencies[0].targetModuleName == 'root-api'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. architecture/platforms.md

    ## Structure
    
    Each platform and module has its own source directory under [platforms/](../platforms).
    In these source directories, you will find the Gradle projects that make up the platform or module.
    
    The platforms and modules are defined using a DSL in [settings.gradle.kts](../settings.gradle.kts)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top