Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 186 for deselecting (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ProjectComponentSelector.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts.component;
    
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * Criteria for selecting a component instance that is built as part of the current build.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    @HasInternalProtocol
    public interface ProjectComponentSelector extends ComponentSelector {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ModuleComponentSelector.java

    package org.gradle.api.artifacts.component;
    
    import org.gradle.api.artifacts.ModuleIdentifier;
    import org.gradle.api.artifacts.VersionConstraint;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * Criteria for selecting a component instance that is available as a module version.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ModuleComponentSelector extends ComponentSelector {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleMultipleNodeSelectionFailure.java

    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when multiple incompatible variants of a single component
     * are selecting during a request.
     */
    public final class IncompatibleMultipleNodeSelectionFailure extends AbstractVariantSelectionFailure {
        private final ImmutableList<AssessedCandidate> assessedCandidates;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    Then, users _have to_ express their preferences, if possible, or fix the problem of having incompatible things on the classpath, as explained in the following section.
    ====
    
    [[sub:selecting-between-candidates]]
    == Selecting between candidates
    
    At some point, a dependency graph is going to include either _incompatible modules_, or modules which are _mutually exclusive_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentMetadataProcessor.java

                return 0;
            };
        };
    
        ModuleComponentResolveMetadata processMetadata(ModuleComponentResolveMetadata metadata);
    
        /**
         * Processes "shallow" metadata, only for selecting a version. This metadata is typically
         * provided by a custom metadata processor.
         * @param metadata the metadata to be processed
         * @return updated metadata, if any component metadata rule applies.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TrackingHttpHandler.java

        /**
         * Selects a response producer to handle the given request.
         *
         * This method is called under the state lock. The handler is _not_ called under the state lock. That is, the lock is held only while selecting how to handle the request.
         *
         * This method may block until the request is ready to be handled, but must do so using a condition created from the state lock.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                implies that the Selector is limited to selecting only
                                workload endpoints in the same namespace as the NetworkPolicy.
                                \n For NetworkPolicy, `global()` NamespaceSelector implies
                                that the Selector is limited to selecting only GlobalNetworkSet
                                or HostEndpoint. \n For GlobalNetworkPolicy, an empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  8. releasenotes/notes/injector-selectors.yaml

      content: |
        The logic to determine if a pod requires sideacr injection or not has been updated to make use of
        new Kubernetes features. Previously, the webhook was triggered at a coarse grain level, selecting any
        pods in a namespace with a matching `istio-injection=enabled` label.
    
        This has two limitations:
    
        * Opting out individual pods with the `sidecar.istio.io/inject` label would still trigger the webhook,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/LibraryComponentSelector.java

     * limitations under the License.
     */
    
    package org.gradle.api.artifacts.component;
    
    import javax.annotation.Nullable;
    
    /**
     * Criteria for selecting a library instance that is built as part of the current build.
     */
    public interface LibraryComponentSelector extends ComponentSelector {
        /**
         * Return the project path of the selected library.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

      // stash these in static fields to avoid loading them over and over again (speeds up test
      // execution significantly)
    
      /**
       * This classloader disallows {@link sun.misc.Unsafe}, which will prevent us from selecting our
       * preferred strategy {@code UnsafeAtomicHelper}.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
      private static final ClassLoader NO_UNSAFE =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top