Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 301 - 310 of 519 for Compiler (0.9 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ForbiddenPatternsTask.java

                .reduce(FileTree::plus)
                .orElse(projectLayout.files().getAsFileTree());
        }
    
        @TaskAction
        public void checkInvalidPatterns() throws IOException {
            Pattern allPatterns = Pattern.compile("(" + String.join(")|(", getPatterns().values()) + ")");
            List<String> failures = new ArrayList<>();
            for (File f : getFiles()) {
                List<String> lines;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  2. .github/CONTRIBUTING.md

    forking the repository and sending a pull request.
    
    When submitting code, please make every effort to follow existing conventions
    and style in order to keep the code as readable as possible. Please also make
    sure your code compiles by running `./gradlew check`. Checkstyle failures
    during compilation indicate errors in your style and can be viewed in the
    `checkstyle-result.xml` file.
    
    Some general advice
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 17 04:16:26 GMT 2019
    - 1.4K bytes
    - Click Count (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/filters/AnonymousClassesFilter.groovy

    import javassist.CtClass
    
    import java.util.regex.Pattern
    
    /**
     * Matches JVM anonymous classes.
     */
    class AnonymousClassesFilter implements ClassFilter {
    
        private static final Pattern PATTERN = Pattern.compile('.*\\$[0-9]+$')
    
        @Override
        boolean matches(CtClass ctClass) {
            return ctClass.name.matches(PATTERN)
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/RepositoriesSetupPlugin.java

    import java.util.Locale;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    public class RepositoriesSetupPlugin implements Plugin<Project> {
    
        private static final Pattern LUCENE_SNAPSHOT_REGEX = Pattern.compile("\\w+-snapshot-([a-z0-9]+)");
    
        @Override
        public void apply(Project project) {
            configureRepositories(project);
        }
    
        /**
         * Adds repositories used by ES projects and dependencies
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.7K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneTestPlugin.java

    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.api.plugins.JavaBasePlugin;
    import org.gradle.api.tasks.testing.Test;
    
    /**
     * Configures the build to compile against Elasticsearch's test framework and
     * run integration and unit tests. Use BuildPlugin if you want to build main
     * code as well as tests.
     */
    public class StandaloneTestPlugin implements Plugin<Project> {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/ParameterUtil.java

            final Map<String, String> paramMap = new LinkedHashMap<>();
            if (value != null) {
                int unknownKey = 0;
                final Pattern properyPattern = Pattern.compile(ComponentUtil.getFessConfig().getAppEncryptPropertyPattern());
                final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
                final String[] lines = value.split("[\r\n]");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  7. guava/src/com/google/common/base/CommonPattern.java

      public abstract int flags();
    
      // Re-declare this as abstract to force subclasses to override.
      @Override
      public abstract String toString();
    
      public static CommonPattern compile(String pattern) {
        return Platform.compilePattern(pattern);
      }
    
      public static boolean isPcreLike() {
        return Platform.patternCompilerIsPcreLike();
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 03:10:51 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  8. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/ElasticsearchJavaPluginFuncTest.groovy

            assert compileJava.targetCompatibility == JavaVersion.VERSION_1_10.toString()
            """
    
            then:
            gradleRunner("help").build()
        }
    
        def "compile option --release is configured from targetCompatibility"() {
            when:
            buildFile.text = """
                plugins {
                 id 'elasticsearch.java'
                }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            } finally {
                System.clearProperty("lasta.env");
            }
        }
    
        @Test
        public void test_createPathMatcher_encodeUrl() {
            final Pattern pattern = Pattern.compile("test");
            final Matcher matcher = pattern.matcher("test");
            final BiFunction<String, Matcher, String> pathMatcher = pathMappingHelper.createPathMatcher(matcher, "function:encodeUrl");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  10. src/main/resources/crawler/transformer.xml

    		<property name="propertyMap">defaultPropertyMap</property>
    		<property name="childUrlRuleMap">htmlUrlRuleMap</property>
    		<!--
    		<property name="invalidUrlPattern">@java.util.regex.Pattern@compile("^\\s*javascript:|^\\s*mailto:|^\\s*irc:|^\\s*skype:|^\\s*callto:",@java.util.regex.Pattern@CASE_INSENSITIVE)</property>
    		 -->
    		<property name="convertUrlMap">
    			{"feed:" : "http:"}
    		</property>
    		<!-- segment -->
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Dec 20 13:14:54 GMT 2024
    - 1.7K bytes
    - Click Count (0)
Back to Top