Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for ANTLR (0.12 sec)

  1. platforms/documentation/docs/src/snippets/antlr/useAntlrPlugin/kotlin/settings.gradle.kts

    rootProject.name = "antlr"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/artifacts/externalDependencies/tests/externalDependencies.out

    hibernate-core-3.6.7.Final.jar
    antlr-2.7.6.jar
    commons-collections-3.1.jar
    dom4j-1.6.1.jar
    hibernate-commons-annotations-3.2.0.Final.jar
    hibernate-jpa-2.0-api-1.0.1.Final.jar
    jta-1.1.jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 207 bytes
    - Viewed (0)
  3. subprojects/distributions-full/build.gradle.kts

        pluginsRuntimeOnly(project(":build-configuration"))
        pluginsRuntimeOnly(project(":build-init"))
        pluginsRuntimeOnly(project(":build-profile"))
        pluginsRuntimeOnly(project(":antlr"))
        pluginsRuntimeOnly(project(":enterprise"))
        pluginsRuntimeOnly(project(":unit-test-fixtures"))
    }
    
    // This is required for the separate promotion build and should be adjusted there in the future
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/eclipse/model/customClasspath.xml

    	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
    	<classpathentry kind="lib" path="/apache-ant-1.7.1/lib/ant-antlr.jar"/>
    	<classpathentry kind="src" output="bin2" path="src"/>
    	<classpathentry kind="var" path="GRADLE_CACHE/ant-1.6.5.jar"/>
    	<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/gradle"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 563 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    <<scala_plugin.adoc#scala_plugin,Scala>>::
    Provides support for building any type of https://www.scala-lang.org/[Scala] project.
    
    <<antlr_plugin.adoc#antlr_plugin,ANTLR>>::
    Provides support for generating parsers using http://www.antlr.org/[ANTLR].
    
    <<jvm_test_suite_plugin.adoc#jvm_test_suite_plugin,JVM Test Suite>>::
    Provides support for modeling and configuring multiple test suite invocations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/XRef.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.plugins.antlr.internal.antlr2;
    
    import antlr.preprocessor.Hierarchy;
    
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSourceGenerationException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr.internal;
    
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class AntlrSourceGenerationException extends GradleException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 953 bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrResult.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr.internal;
    
    import java.io.Serializable;
    
    public class AntlrResult implements Serializable {
    
        private final int errorCount;
        private final Exception exception;
    
        public AntlrResult(int errorCount) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesAntlrIntegrationSpec.groovy

    import org.junit.Rule
    
    
    class SamplesAntlrIntegrationSpec extends AbstractSampleIntegrationTest {
    
        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        @UsesSample("antlr/useAntlrPlugin")
        def "can build with dsl #dsl"() {
            given:
            TestFile projectDir = sample.dir.file(dsl)
    
            when: 'Build and test projects'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSpec.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.File;
    import java.io.Serializable;
    import java.util.List;
    import java.util.Set;
    
    public class AntlrSpec implements Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top