Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for Dependencies (0.19 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                Set<OperationDescriptor> dependencies = collectDescriptors(descriptorWithExtras.getDependencies());
                PluginIdentifier originPlugin = toPluginIdentifier(descriptorWithExtras.getOriginPlugin());
                return new DefaultTaskOperationDescriptor(descriptor, parent, descriptor.getTaskPath(), dependencies, originPlugin);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                List<Dependency> dependencies = importMgmt.getDependencies().stream()
                        .filter(candidate -> exclusions.stream().noneMatch(exclusion -> match(exclusion, candidate)))
                        .map(candidate -> candidate.withExclusions(exclusions))
                        .collect(Collectors.toList());
                importMgmt = importMgmt.withDependencies(dependencies);
            }
    
            return importMgmt;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass converts the control outputs of a while loop body function to data
    outputs. Thus, inter iteration control dependencies are transformed to
    data dependencies. Since data dependencies can express which particular
    operations in the while loop body are dependent on which inputs, it captures
    inter iteration parallelism in while loop. Control dependencies on the other
    hand create a barrier at the end of while loop body thus blocking any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <h3>Dependencies</h3>
     *
     * <p>A project generally has a number of dependencies it needs in order to do its work.  Also, a project generally
     * produces a number of artifacts, which other projects can use. Those dependencies are grouped in configurations, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                List<org.apache.maven.api.model.Dependency> dependencies = importMgmt.getDependencies().stream()
                        .filter(candidate -> exclusions.stream().noneMatch(exclusion -> match(exclusion, candidate)))
                        .map(candidate -> addExclusions(candidate, exclusions))
                        .collect(Collectors.toList());
                importMgmt = importMgmt.withDependencies(dependencies);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
            }
    
            private void mergeDependencies(DependencyDescriptor[] dependencies) {
                DefaultModuleDescriptor md = getMd();
                for (DependencyDescriptor dependencyDescriptor : dependencies) {
                    LOGGER.debug("Merging dependency with: {}", dependencyDescriptor.getDependencyRevisionId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .Dependent Components Example
    image::nativeDependents.png[]
    
    NOTE: By following the dependencies backwards, you can see `LinuxApp` and `WindowsApp` are _dependents_ of `libUtil`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Here is an example that maintains a copy of the project's runtime dependencies in the `build/libs` directory:
    
    ====
    include::sample[dir="snippets/files/sync/kotlin",files="build.gradle.kts[tags=copy-dependencies]"]
    include::sample[dir="snippets/files/sync/groovy",files="build.gradle[tags=copy-dependencies]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            when:
            registry.get("foo")
    
            then:
            ConfigurationCycleException e = thrown()
            e.message == TextUtil.toPlatformLineSeparators("""A cycle has been detected in model rule dependencies. References forming the cycle:
    foo
    \\- foo mutator
       \\- bar
          \\- bar mutator
             \\- foo""")
        }
    
        def "multiple element configuration cycles are detected"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    }
                }
    
                dependencies {
                    attributesSchema {
                        attribute(artifactType)
                    }
    
                    artifactTypes.getByName("jar") {
                        attributes.attribute(counted, false)
                    }
                }
    
                dependencies {
                    registerTransform(CounterTransform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top