Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for getNodes (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                        return Optional.ofNullable(res.getDependencyResolutionResult())
                                .map(r -> new DefaultDependencyResolverResult(
                                        null, r.getCollectionErrors(), session.getNode(r.getDependencyGraph()), 0));
                    }
                };
            } catch (ProjectBuildingException e) {
                throw new ProjectBuilderException("Unable to build project", e);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            assert binder.isBound() : "RuleBinder must be in a bound state";
            for (ModelBinding inputBinding : binder.getInputBindings()) {
                ModelNodeInternal node = inputBinding.getNode();
                if (dependencies == null) {
                    dependencies = new HashSet<>();
                }
                dependencies.add(node);
                if (node.dependents == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

        }
    }
    """
            settingsFile.text = "include 'api', 'impl'"
    
            when:
            BasicIdeaProject project = withConnection { connection -> connection.getModel(BasicIdeaProject.class) }
            def impl = project.children.find { it.name == 'impl' }
    
            then:
            def libs = impl.dependencies
            if (targetVersion >= GradleVersion.version("3.4")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    !!! warning "Attention"
        Si vous n'ĂȘtes pas un "expert" en OpenAPI, vous n'en avez probablement pas besoin.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top