Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for participant (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                    module('org:a:1.0')
                    module('org:b:1.0')
                }
            }
        }
    
        @Issue("gradle/gradle#12011")
        def "can detect capability conflict even when participants belong to a virtual platform (#first, #second)"() {
            given:
            repository {
                'aligned:foo:1.0'()
                'indirect:bar:1.0' {
                    dependsOn 'other:baz:1.0'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    For example, if you add a dependency to your project, it becomes a _transitive dependency_ of your consumers, and therefore may participate in conflict resolution if the consumer needs a different version.
    
    A lot of the problems Gradle handles are about fixing the mismatch between the expectations of a consumer and a producer.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    * Each property getter or the corresponding field must be annotated with a property annotation like `@InputFile` and `@OutputDirectory`.
    Properties that don't participate in up-to-date checks should be annotated with `@Internal`.
    
    Any failed validations will result in a warning message.
    
    For each plugin you are developing, add an entry to the `gradlePlugin {}` script block:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                }
            }
        }
    
        void "transitive dependencies of an dependency constraint do not participate in conflict resolution if it is not included elsewhere"() {
            given:
            mavenRepo.module("org", "foo", '1.0').dependsOn('org', 'bar', '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. README.md

    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    - To ask questions and get assistance from our community, visit [Github Discussions](https://github.com/istio/istio/discussions)
    - To learn how to participate in our overall community, visit [our community page](https://istio.io/about/community)
    
    In this README:
    
    - [Introduction](#introduction)
    - [Repositories](#repositories)
    - [Issue management](#issue-management)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *      <td>No</td>
     *      <td>Binds this Mojo to a particular phase of the standard build lifecycle, if specified.
     *          <br>
     *          <i>NOTE: This is only required if this Mojo is to participate in the standard build process.</i>
     *      </td>
     *   </tr>
     *   <tr>
     *      <td>execute</td>
     *      <td>@Execute
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            return results.getResolved(componentFactory);
        }
    
        /**
         * Resolve the 'require' constraint of the selector.
         * A version will be registered for this selector, and it will participate in conflict resolution.
         */
        private void resolveRequireConstraint(SelectorStateResolverResults results, ResolvableSelectorState selector, VersionSelector allRejects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                        if (details.source.allExecutionComplete()) {
                            iterator.remove();
                        }
                        // Else, leave the plan in the set of plans so that it can participate in health monitoring. It will be garbage collected once complete
                    } else if (state == WorkSource.State.MaybeWorkReadyToStart) {
                        return WorkSource.State.MaybeWorkReadyToStart;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // a non-template class because different types of linked_ptr<> can refer to
    // the same object (linked_ptr<Superclass>(obj) vs linked_ptr<Subclass>(obj)).
    // So, it needs to be possible for different types of linked_ptr to participate
    // in the same circular linked list, so we need a single class type here.
    //
    // DO NOT USE THIS CLASS DIRECTLY YOURSELF.  Use linked_ptr<T>.
    class linked_ptr_internal {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // a non-template class because different types of linked_ptr<> can refer to
    // the same object (linked_ptr<Superclass>(obj) vs linked_ptr<Subclass>(obj)).
    // So, it needs to be possible for different types of linked_ptr to participate
    // in the same circular linked list, so we need a single class type here.
    //
    // DO NOT USE THIS CLASS DIRECTLY YOURSELF.  Use linked_ptr<T>.
    class linked_ptr_internal {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top