Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for participant (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        void "transitive dependencies of a dependency constraint do not participate in conflict resolution if it is not included elsewhere"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0' {
                    dependsOn 'org:bar:1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. docs/distributed/DESIGN.md

    uniform distribution across nodes*. This is to ensure that same number of drives are pariticipating in any erasure set. For example if you have 2 nodes with 180 drives then GCD is 15 but this would lead to uneven distribution, one of the nodes would participate more drives. To avoid this the affinity is given towards nodes which leads to next best GCD factor of 12 which provides uniform distribution.
    
    - In this algorithm, we also make sure that we spread the drives out evenly. MinIO server expands...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    // on the user provided policy. If an operation can be clustered (one of the
    // user provided policies accepts it under given constraints), it will become
    // a "member" that will participate in the union-find cluster construction.
    //
    // A block argument can also become a member (or even a root member), however
    // only operations will become a part of the outline `tf_device.cluster`, block
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

            // TODO: support optional parameters?
            // TODO: support at least minimal overload resolution?
            val args = functionCall.args
    
            // TODO: lambdas are handled in a special way and don't participate in signature matching now
            val signatureSizeMatches = preFilterSignatures(matchingMembers, args)
    
            return chooseMatchingOverloads(receiver, signatureSizeMatches, args, argResolution)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

        /**
         * Execute the given action if the configuration has no defined dependencies when it first participates in
         * dependency resolution. A {@code Configuration} will participate in dependency resolution
         * when:
         * <ul>
         *     <li>The {@link Configuration} itself is resolved</li>
         *     <li>Another {@link Configuration} that extends this one is resolved</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top