Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for deselecting (0.34 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodePredicate.java

    import com.google.common.base.Predicate;
    import com.google.common.base.Predicates;
    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.Nullable;
    
    /**
     * Criteria for selecting the descendants of a particular node.
     */
    public abstract class NodePredicate {
        private final Predicate<? super MutableModelNode> matcher;
    
        private NodePredicate(Predicate<? super MutableModelNode> matcher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/FluentFuture.java

       * // counters.
       * ListenableFuture<Integer> faultTolerantFuture =
       *     fetchCounters().catching(FetchException.class, x -> 0, directExecutor());
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
       * the discussion in the {@link #addListener} documentation. All its warnings about heavyweight
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Contains information about the build layout, resolved after running the settings script and selecting the default project.
     */
    @ServiceScope(Scope.Build.class)
    public class ResolvedBuildLayout {
        private final GradleInternal gradle;
        private final BuildLayout buildLayout;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/covdata/doc.go

    	$ ls ./profiledir
    	covcounters.cce1b350af34b6d0fb59cc1725f0ee27.821598.1663006712821344241
    	covmeta.cce1b350af34b6d0fb59cc1725f0ee27
    	$
    
    Run covdata via "go tool covdata <mode>", where 'mode' is a subcommand
    selecting a specific reporting, merging, or data manipulation operation.
    Descriptions on the various modes (run "go tool cover <mode> -help" for
    specifics on usage of a given mode):
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/CookieJar.kt

     * limitations under the License.
     */
    package okhttp3
    
    /**
     * Provides **policy** and **persistence** for HTTP cookies.
     *
     * As policy, implementations of this interface are responsible for selecting which cookies to
     * accept and which to reject. A reasonable policy is to reject all cookies, though that may
     * interfere with session-based authentication schemes that require cookies.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/globalnetworkpolicy-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
    - 45.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	//
    	// Now consider a reference to method M in new(T).F.M() in a
    	// module that requires a minimum of go1.21. The analysis may
    	// occur using a version of Go higher than 1.21, selecting the
    	// first version of T, so the method M is Real.M. This would
    	// spuriously cause the analyzer to report a reference to a
    	// too-new symbol even though this expression compiles just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * selecting the matching configuration. If {@code null}, a default configuration should be used.
         */
        @Nullable
        String getTargetConfiguration();
    
        /**
         * Sets the requested target configuration of this dependency. This is the name of the configuration in the target module that should be used when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         */
        ModuleVersionSelector getTarget();
    
        /**
         * Sets a human readable description for the reason the component is selected. The description will only
         * be used if the rule is actually selecting a target, either using {@link #useVersion(String)} or {@link #useTarget(Object)}
         *
         * @param description a description of the selection reason
         *
         * @return this details object
         *
         * @since 4.5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

    import com.google.common.base.MoreObjects;
    import org.gradle.api.Describable;
    import org.gradle.api.provider.Property;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Requirements for selecting a Java toolchain.
     * <p>
     * A toolchain is a JRE/JDK used by the tasks of a build.
     * Tasks may require one or more of the tools (javac, java, or javadoc) of a toolchain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top