Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,480 for greatest (0.21 sec)

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

         */
        Set<Class<? extends Annotation>> getInjectionAnnotations();
    
        /**
         * Creates a new {@link InstanceFactory} for the given type, which creates instances based on the configuration of this scheme.
         */
        <T> InstanceFactory<T> forType(Class<T> type);
    
        /**
         * Creates a new {@link InstantiationScheme} which creates instances using the given services, based on the configuration of this scheme.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

        /**
         * Creates a problem with the given message and exception.
         *
         * Problem has no documentation, and a default location is inferred from the calling thread's state.
         */
        fun problem(message: StructuredMessage, exception: Throwable? = null, documentationSection: DocumentationSection? = null): PropertyProblem
    
        /**
         * Creates a problem with the given message.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

        }
    
        def "directly returns IvyArtifact input"() {
            when:
            def ivyArtifact = Mock(IvyArtifact)
    
            then:
            parser.parseNotation(ivyArtifact) == ivyArtifact
        }
    
        def "creates IvyArtifact for PublishArtifact"() {
            when:
            def ivyArtifact = parser.parseNotation(publishArtifact)
    
            then:
            ivyArtifact.name == 'pub-name'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

            def writer = new StringWriter()
            new UnboundRulesReporter(new PrintWriter(writer), "").reportOn(rules)
            normaliseLineSeparators(writer.toString())
        }
    
        def "creates unbound rules for unfulfilled binders with unbound subject reference"() {
            binder {
                descriptor("ruleWithUnboundSubjectReference")
                subjectReference("path.subject", String)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MainWithXCTestSourceElement.java

        public abstract SwiftSourceElement getMain();
        public abstract XCTestSourceElement getTest();
    
        @Override
        public List<XCTestSourceFileElement> getTestSuites() {
            return getTest().getTestSuites();
        }
    
        @Override
        public List<SourceFile> getFiles() {
            return Lists.newArrayList(Iterables.concat(getMain().getFiles(), getTest().getFiles()));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
         *
         * @param variableName The name of the environment variable.
         * @return The provider. Never returns null.
         * @since 6.1
         */
        Provider<String> environmentVariable(String variableName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

            when:
            CacheVersionMapping.introducedIn("1.0")
                .changedTo(2, "1.2")
                .changedTo(3, "1.1")
    
            then:
            def e = thrown(IllegalArgumentException)
            e.message.contains("Gradle version (1.1) must be greater than all previous versions")
        }
    
        def "throws exception if base version of Gradle version is greater than base version of current Gradle version"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top