Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,457 for predates (0.15 sec)

  1. pilot/pkg/security/authz/matcher/string.go

    package matcher
    
    import (
    	"strings"
    
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    )
    
    // StringMatcher creates a string matcher for v.
    func StringMatcher(v string) *matcher.StringMatcher {
    	return StringMatcherWithPrefix(v, "")
    }
    
    // StringOrMatcher creates an OR string matcher for a list of values.
    func StringOrMatcher(vs []string) *matcher.ValueMatcher {
    	matchers := []*matcher.ValueMatcher{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    // Creates an 1D array const with float values.
    class Create1DConst<string values> : NativeCodeCall<
      "Create1DConstValue<float>($_builder, $_loc, "# values #")">;
    
    // Creates a scalar const with float value.
    class CreateScalarConst<string value> : NativeCodeCall<
      "CreateScalarConstValue<float>($_builder, $_loc, "# value #")">;
    
    // Creates an 1D array const with integer values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutputFactory.java

    public interface StyledTextOutputFactory {
        /**
         * Creates a {@code StyledTextOutput} with the given category and the standard output log level.
         *
         * @param logCategory The log category.
         * @return the output
         */
        StyledTextOutput create(String logCategory);
    
        /**
         * Creates a {@code StyledTextOutput} with the given category and the standard output log level.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top