Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,005 for predates (0.13 sec)

  1. 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)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

    import com.intellij.openapi.project.Project
    import com.intellij.openapi.util.ModificationTracker
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    
    /**
     * [KotlinModificationTrackerFactory] creates modification trackers for select modification events.
     *
     * Further modification tracking is implemented with a subscription-based mechanism via [KotlinModificationTopics]. Modification trackers make the most
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

    def ResultList : NativeCodeCall<"llvm::SmallVector<Value>{$0...}">;
    
    // Creates a list of NamedAttributes. An example usage would be:
    // (NamedAttributeList (NamedAttr<"transpose_a"> $transpose_a))
    def NamedAttributeList : NativeCodeCall<"llvm::SmallVector<NamedAttribute>{$0...}">;
    
    // Creates a NamedAttribute given its name and value. Essentially creates
    // a pair: {attribute_name, attribute_value}.
    class NamedAttr<string attr_name> :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

        private final String message;
    
        private final String simpleMessage;
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         */
        public ClRuntimeException(final String messageCode) {
            this(messageCode, new Object[0], null);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

    import spock.lang.Specification
    
    class PatternStepFactoryTest extends Specification {
        def "creates step for ** wildcard"() {
            expect:
            def step = PatternStepFactory.getStep("**", true);
            step instanceof AnyWildcardPatternStep
            step.matches("anything")
            step.matches("")
        }
    
        def "creates step for * wildcard"() {
            expect:
            def step = PatternStepFactory.getStep("*", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-application')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/AbstractGraphBuilder.java

      Optional<Integer> expectedNodeCount = Optional.absent();
    
      /**
       * Creates a new instance with the specified edge directionality.
       *
       * @param directed if true, creates an instance for graphs whose edges are each directed; if
       *     false, creates an instance for graphs whose edges are each undirected.
       */
      AbstractGraphBuilder(boolean directed) {
        this.directed = directed;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest.java

        private List<Server> servers;
    
        private List<Proxy> proxies;
    
        /**
         * Creates an empty request.
         */
        public DefaultSettingsDecryptionRequest() {
            // does nothing
        }
    
        /**
         * Creates a new request to decrypt the specified settings.
         *
         * @param settings The settings to decrypt, must not be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandlerTest.groovy

        }
    
        void "creates a dependency from some notation"() {
            Dependency dependency = Mock()
    
            when:
            def result = dependencyHandler.create("someNotation")
    
            then:
            result == dependency
    
            and:
            1 * dependencyFactory.createDependency("someNotation") >> dependency
        }
    
        void "creates and configures a dependency from some notation"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 10:37:21 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/StaticValueTest.groovy

            1 * property.implicitFinalizeValue()
        }
    
        def "creates value for null value"() {
            expect:
            def value = StaticValue.of(null)
            value.call() == null
            value.taskDependencies == TaskDependencyContainer.EMPTY
            value.attachProducer(Stub(Task))
            value.maybeFinalizeValue()
        }
    
        def "creates value for other value"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top