Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 132 for unes (0.01 seconds)

  1. architecture/standards/0009-use-american-english.md

    * `labeled` (not `labelled`)
    
    ### Rationale for American English
    
    American English was chosen for the following reasons:
    
    * **Current predominance**: The majority of existing Gradle code and documentation already uses American English
    * **Industry standard**: Most widely used programming languages, frameworks, and tools (Java, Kotlin, JavaScript, etc.) use American English in their APIs and documentation
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

    import gradlebuild.docs.model.SimpleClassMetaDataRepository
    import org.w3c.dom.Document
    import org.w3c.dom.Element
    /**
     * Generates the docbook source for the DSL reference guide.
     *
     * Uses the following as input:
     * <ul>
     * <li>Meta-data extracted from the source by {@link gradlebuild.docs.dsl.source.ExtractDslMetaDataTask}.</li>
     * <li>Meta-data about the plugins, in the form of an XML file.</li>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

                        .result());
            }
            return super.godHandPrologue(runtime);
        }
    
        /**
         * Converts validation messages to a localized string representation for API responses.
         * Uses the request locale if available, otherwise defaults to English.
         *
         * @param validationMessagesLambda lambda function that adds validation messages
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java

    import org.commonmark.renderer.html.HtmlRenderer;
    import org.owasp.html.HtmlPolicyBuilder;
    import org.owasp.html.PolicyFactory;
    
    /**
     * Renders markdown to sanitized HTML for safe display in the chat interface.
     * Uses commonmark for markdown parsing and OWASP HTML Sanitizer for XSS prevention.
     */
    public class MarkdownRenderer {
    
        private static final Logger logger = LogManager.getLogger(MarkdownRenderer.class);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         * This method searches for 'fess_ds++.xml' configuration files within JAR files
         * in the data store plugin directory and extracts component class names.
         *
         * <p>The method uses secure XML parsing features to prevent XXE attacks and
         * other XML-based vulnerabilities. Component class names are extracted from
         * the 'class' attribute of 'component' elements in the XML files.</p>
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            assertTrue(item1.equals(item2));
            assertTrue(item2.equals(item1));
        }
    
        @Test
        public void test_equals_withNullInput() {
            // Test equals with null input - should not throw, uses null-safe comparison
            ProtwordsItem item1 = new ProtwordsItem(1, null);
            ProtwordsItem item2 = new ProtwordsItem(2, null);
            ProtwordsItem item3 = new ProtwordsItem(1, "word");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. .teamcity/mvnw

          JAVA_HOME="$javaHome"
          export JAVA_HOME
        fi
      fi
    fi
    
    if [ -z "$JAVACMD" ] ; then
      if [ -n "$JAVA_HOME"  ] ; then
        if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
          # IBM's JDK on AIX uses strange locations for the executables
          JAVACMD="$JAVA_HOME/jre/sh/java"
        else
          JAVACMD="$JAVA_HOME/bin/java"
        fi
      else
        JAVACMD="`which java`"
      fi
    fi
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/DocumentUtil.java

                }
                return (T) Boolean.valueOf(value.toString());
            }
            return null;
        }
    
        /**
         * Encodes a URL by encoding non-URL-safe characters.
         * Uses the request's character encoding if available, otherwise defaults to UTF-8.
         * Only encodes characters that are not considered URL-safe according to CharUtil.
         *
         * @param url the URL to encode
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  9. architecture/README.md

    # Gradle architecture documentation
    
    This directory contains documentation that describes Gradle's architecture and how the various pieces fit together and work.
    
    ## Architecture decision records (ADRs)
    
    The Gradle team uses ADRs to record architectural decisions that the team has made.
    
    See [Architecture decisions records](standards) for the list of ADRs.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

        private final String methodDescriptor;
    
        /**
         * Was upgradedMethods originally, but got renamed to upgradedAccessors and then to replacedAccessors
         * can be removed once base version will be the one that also uses 'replacedAccessors'.
         */
        @SerializedName(value = "replacedAccessors", alternate = {"upgradedAccessors", "upgradedMethods"})
        private final List<ReplacedAccessor> replacedAccessors;
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Aug 13 19:17:41 GMT 2024
    - 8K bytes
    - Click Count (0)
Back to Top