Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,005 for predates (0.25 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionSelectorSchemeTest.groovy

                "(,2.0]",
                "(,2.0)"
            ]
        }
    
        def "creates sub version selector"() {
            expect:
            matcher.parseSelector(selector) instanceof SubVersionSelector
    
            where:
            selector << [
                "1+",
                "1.2.3+"
            ]
        }
    
        def "creates latest version selector"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResourceFactory.java

     *
     * @since 2.2
     */
    public interface TextResourceFactory {
        /**
         * Creates a text resource backed by the given string.
         *
         * @param string a string
         * @return a text resource backed by the given string
         */
        TextResource fromString(String string);
    
        /**
         * Creates a text resource backed by the given file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNodes.java

     */
    
    package org.gradle.model.internal.core;
    
    import com.google.common.base.Predicate;
    import com.google.common.base.Predicates;
    import org.gradle.model.internal.type.ModelType;
    
    public class ModelNodes {
        public static Predicate<MutableModelNode> all() {
            return Predicates.alwaysTrue();
        }
    
        public static Predicate<MutableModelNode> withType(Class<?> type) {
            return withType(ModelType.of(type));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *
     * @since 3.5
     */
    @ServiceScope(Scope.Project.class)
    public interface WorkerExecutor {
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with no isolation.
         *
         * @since 5.6
         */
        WorkQueue noIsolation();
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with an isolated classloader.
         *
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

        /**
         * Creates a {@link SourceDirectorySet}.
         *
         * @param name A short name for the set.
         * @param displayName A human consumable display name for the set.
         * @since 5.0
         */
        SourceDirectorySet sourceDirectorySet(String name, String displayName);
    
        /**
         * Creates a new {@link ConfigurableFileCollection}. The collection is initially empty.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Queues.java

      // ArrayBlockingQueue
    
      /**
       * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access
       * policy.
       */
      @J2ktIncompatible
      @GwtIncompatible // ArrayBlockingQueue
      public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) {
        return new ArrayBlockingQueue<>(capacity);
      }
    
      // ArrayDeque
    
      /**
       * Creates an empty {@code ArrayDeque}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/matcher/metadata.go

    // limitations under the License.
    
    package matcher
    
    import (
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    )
    
    // MetadataStringMatcher creates a metadata string matcher for the given filter, key and the
    // string matcher.
    func MetadataStringMatcher(filter, key string, m *matcher.StringMatcher) *matcher.MetadataMatcher {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h

                                                RewritePatternSet *patterns);
    
    // Creates an instance of the ConvertTFQuantTypes pass, which will convert TF
    // qint types to int types and surround TF UniformQuantized ops with qint <->
    // int casts.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateConvertTFQuantTypesPass();
    
    // Creates an instance of the VerifyQuantLegalization pass, which verifies all
    // quant ops and types are lowered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ObjectFactoryExtensions.kt

        newInstance(T::class.java, *parameters)
    
    
    /**
     * Creates a [Property] that holds values of the given type [T].
     *
     * @see [ObjectFactory.property]
     */
    inline fun <reified T> ObjectFactory.property(): Property<T> =
        property(T::class.java)
    
    
    /**
     * Creates a [SetProperty] that holds values of the given type [T].
     *
     * @see [ObjectFactory.setProperty]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            when:
            MavenArtifact mavenArtifact = Mock()
            def output = parser.parseNotation(mavenArtifact)
    
            then:
            output == mavenArtifact
        }
    
        def "creates MavenArtifact for PublishArtifact"() {
            when:
            def mavenArtifact = parser.parseNotation(publishArtifact)
    
            then:
            mavenArtifact.extension == publishArtifact.extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top