Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 58 for _this3 (0.03 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        public HtmlResponse create(final CreateForm form) {
            currentForm = form;
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
            validate(form, messages -> {}, this::asEditHtml);
            validateFields(form.doc, v -> throwValidationError(v, this::asEditHtml));
            verifyToken(this::asEditHtml);
            getDoc(form).ifPresent(entity -> {
                try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  2. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

    import jakarta.annotation.PreDestroy;
    
    /**
     * Groovy script engine implementation that extends AbstractScriptEngine.
     * This class provides support for executing Groovy scripts with parameter binding
     * and DI container integration.
     *
     * <p>Thread Safety: This class is thread-safe. Each cached entry holds its own
     * GroovyClassLoader. The cache uses Guava Cache with segment-based locking for
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    fun Directory.parentOrRoot(): Directory = if (this.file("version.txt").asFile.exists()) {
        this
    } else {
        val parent = dir("..")
        when {
            parent.file("version.txt").asFile.exists() -> parent
            this == parent -> error("Cannot find 'version.txt' file in root of repository")
            else -> parent.parentOrRoot()
        }
    }
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  4. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

    /*
     * Copyright 2024 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
            validate(form, messages -> {}, this::asEditHtml);
            verifyToken(this::asEditHtml);
            getDataConfig(form).ifPresent(entity -> {
                try {
                    dataConfigService.store(entity);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  6. CONTRIBUTING.md

    # Contributing to the Gradle Build Tool
    
    Thank you for your interest in contributing to Gradle!
    This guide explains how to contribute to the core Gradle components, 
    extensions and documentation located in this repository.
    For other extensions and components, see the 
    [Gradle Community Resources](https://gradle.org/resources/).
    
    This guide will help you to...
    
    * maximize the chance of your changes being accepted
    * work on the Gradle code base
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/projects/StageProject.kt

        previousCrossVersionTests: List<BaseGradleBuildType>,
    ) : Project({
            this.id("${model.projectId}_Stage_${stage.stageName.id}")
            this.uuid = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stage.stageName.uuid}"
            this.name = stage.stageName.stageName
            this.description = stage.stageName.description
        }) {
        val specificBuildTypes: List<OsAwareBaseGradleBuildType>
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/job/IndexExportJob.java

         * @return this instance for method chaining
         */
        public IndexExportJob query(final QueryBuilder queryBuilder) {
            this.queryBuilder = queryBuilder;
            return this;
        }
    
        /**
         * Sets the export format.
         *
         * @param format the format name (e.g. "html", "json")
         * @return this instance for method chaining
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  9. AI_POLICY.md

    ## Why this policy exists
    
    There is a fundamental **asymmetry** between submitting a contribution and reviewing one: AI tools make it easy to generate and submit large amounts of code, but they do not make it equally faster for us to review it. 
    This policy protects our limited review budget, allowing us to invest our attention wisely.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

        }
    
        /**
         * Registers this API manager with the web API manager factory.
         * Called automatically after construction via @PostConstruct.
         */
        @PostConstruct
        public void register() {
            if (logger.isInfoEnabled()) {
                logger.info("Loaded {}", this.getClass().getSimpleName());
            }
            ComponentUtil.getWebApiManagerFactory().add(this);
        }
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:40 GMT 2026
    - 13.4K bytes
    - Click Count (0)
Back to Top