Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 490 for Transitive (1.55 sec)

  1. cmd/import-boss/testdata/transitive/allowed/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/transitive/aaa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 151 bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        public static DependencyScope forId(String id) {
            return IDS.get(id);
        }
    
        private final String id;
        private final boolean transitive;
    
        DependencyScope(String id, boolean transitive) {
            this.id = id;
            this.transitive = transitive;
        }
    
        /**
         * The {@code id} uniquely represents a value for this extensible enum.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

     */
    @Experimental
    public interface DependencyResolver extends Service {
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * Exclude of transitive dependency with a single artifact does not exclude its transitive module by using a combination of name exclude rules.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d -> f
         * c -> e
         */
        def "transitive dependency exclude having single artifact with #name does not exclude its transitive module"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

        public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) {
            return applyFilter(projectDependencyGraph.getDownstreamProjects(project, transitive));
        }
    
        public List<MavenProject> getUpstreamProjects(MavenProject project, boolean transitive) {
            return applyFilter(projectDependencyGraph.getUpstreamProjects(project, transitive));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. cmd/import-boss/README.md

      - A list of `ForbiddenPrefixes`
    
    An import is allowed if it matches at least one allowed prefix and does not
    match any forbidden prefixes.
    
    Rules also have a boolean `Transitive` option. When this option is true, the
    rule is applied to transitive imports.
    
    Example:
    
    ```json
    {
      "Rules": [
        {
          "SelectorRegexp": "example[.]com",
          "AllowedPrefixes": [
            "example.com/project/package",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
         * @return The downstream projects in the build order, never {@code null}.
         */
        List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

            given:
            def repo = mavenRepo
            repo.module('org.gradle.test', 'direct', '1.0').publish()
            repo.module('org.gradle.test', 'transitive', '1.0').publish()
            def module = repo.module('org.gradle.test', 'external', '1.0')
            module.dependsOn('org.gradle.test', 'transitive', '1.0')
            module.publish()
    
            buildFile << """
    repositories {
        maven { url '${repo.uri}' }
    }
    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

        private final boolean changing;
        private final boolean transitive;
        private final boolean optional;
        private final SetMultimap<String, String> confs;
        private final List<Exclude> excludes;
        private final List<Artifact> dependencyArtifacts;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalConfigurationMetadata.java

        ) {
            this.name = name;
            this.description = description;
            this.componentId = componentId;
            this.visible = visible;
            this.transitive = transitive;
            this.hierarchy = ImmutableSet.copyOf(hierarchy);
            this.attributes = attributes;
            this.capabilities = capabilities;
            this.canBeConsumed = canBeConsumed;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top