Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for moduleB (0.18 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

        fun ComponentMetadataHandler.declareCapabilityPreference(module: String) {
            withModule<CapabilityRule>(module) {
                params(name)
                params("${providedBy.size + 1}")
            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work.txt

    # Test that we don't run into "newRequirements called with unsorted roots"
    # panic with unsorted main modules.
    cp go.work.backwards go.work
    go work use # update go version
    go run example.com/d
    
    # Test that command-line-arguments work inside and outside modules.
    # This exercises the code that determines which module command-line-arguments
    # belongs to.
    go list ./b/main.go
    env GOWORK=off
    go build -n -o foo foo.go
    env GOWORK=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinAnchorModuleProvider.kt

    /**
     * [KotlinAnchorModuleProvider] provides modules which contain dependencies of libraries.
     *
     * In the IJ monorepo, anchor modules are required for navigation from Kotlin compiler library sources to IJ platform sources. The Kotlin
     * compiler depends on the IJ platform, but this dependency is not represented as JARs in the monorepo, but rather by certain monorepo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            originalResult.rootIdeaProject.modules.name == ['buildA']
    
            def moduleA = originalResult.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof IdeaModuleDependency
            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. 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)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

         *
         * The module structure and source code of all source [KtModule]s in the project should be considered modified when this event is
         * received. This includes source files being moved or removed, and source modules possibly being removed. Thus, all caches related to
         * source module structure and source code should be invalidated.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    // This is a performance optimization. Most modules do not declare capabilities. So, instead of systematically registering
                    // an implicit capability for each module that we see, we only consider modules which _declare_ capabilities. If they do,
                    // then we try to find a module which provides the same capability. It that module has been found, then we register it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    	// The "std" module is special within GOROOT/src, but not otherwise.
    	inGorootSrc map[module.Version]bool
    
    	modFiles map[module.Version]*modfile.File
    
    	modContainingCWD module.Version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // module and then dependencies sorted by module path.
    // A pattern containing "..." specifies the active modules whose
    // module paths match the pattern.
    // A query of the form path@version specifies the result of that query,
    // which is not limited to active modules.
    // See 'go help modules' for more about module queries.
    //
    // The template function "module" takes a single string argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top