Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 247 for dots (0.02 seconds)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs.dsl.docbook;
    
    import gradlebuild.docs.dsl.docbook.model.ClassDoc;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    
    public class ClassDescriptionRenderer {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocRenderer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs.dsl.docbook;
    
    import gradlebuild.docs.dsl.docbook.model.ClassDoc;
    import org.w3c.dom.Element;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class ClassDocRenderer {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Click Count (0)
  3. architecture/standards/0001-use-architectural-decision-records.md

    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like Markdown can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    The *Build Tool Team* has decided to use Architectural Decision Records (aka ADR) to track decisions we want to follow.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  4. .github/dependabot.yml

    # To get started with Dependabot version updates, you'll need to specify which
    # package ecosystems to update and where the package manifests are located.
    # Please see the documentation for all configuration options:
    # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
    
    version: 2
    updates:
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Oct 14 11:09:50 GMT 2025
    - 1K bytes
    - Click Count (0)
  5. architecture/platforms.md

    This platform is agnostic to what exactly the purpose of the work is.
    It might be creating an application, setting up development environments, orchestrating deployments, running simulations, etc.
    
    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms.
    
    It is made up of 3 architecture modules:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 5.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            if (size == 0) {
                return docs; // empty
            }
            int fromIndex = startPosition;
            if (fromIndex >= size) {
                fromIndex = size - 1;
            }
            int toIndex = startPosition + pageSize;
            if (toIndex >= size) {
                toIndex = size;
            }
            return docs.subList(fromIndex, toIndex);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

        private static final String NAME_PREFIX = "searchListTest_";
        private static final String API_PATH = "/api/admin/searchlist";
        private static final String LIST_ENDPOINT_SUFFIX = "docs";
        private static final String ITEM_ENDPOINT_SUFFIX = "doc";
    
        private static final String KEY_PROPERTY = "title";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jun 12 02:18:38 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  8. dbflute_fess/dfprop/additionalForeignKeyMap.dfprop

    # /---------------------------------------------------------------------------
    # additionalForeignKeyMap: (NotRequired - Default map:{})
    #
    # If foreign key does not exist in your database,
    # you can set up here as virtual foreign key for DBFlute.
    #
    # And it's one-to-one relation if you add one fixed condition to referrer table, 
    # you can set virtual foreign key with fixedCondition and fixedSuffix.
    # And you can use it to view objects too.
    #
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.7K bytes
    - Click Count (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionPropertiesSummaryRenderer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs.dsl.docbook;
    
    import gradlebuild.docs.dsl.docbook.model.ClassExtensionDoc;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    public class ExtensionPropertiesSummaryRenderer {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/llm/LlmStreamCallback.java

        /**
         * Called when an error occurs during streaming.
         *
         * @param error the error that occurred
         */
        default void onError(final Throwable error) {
            // Default implementation does nothing
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 1.2K bytes
    - Click Count (0)
Back to Top