Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 181 for pocs (0.03 seconds)

  1. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                        final int pos = line.indexOf('=');
                        if (pos == 0) {
                            paramMap.put("unknown." + (unknownKey + 1), line.substring(pos + 1).trim());
                            unknownKey++;
                        } else if (pos > 0) {
                            final String key = line.substring(0, pos).trim();
                            if (pos < line.length()) {
    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)
  2. build-logic-settings/settings.gradle.kts

                    includeVersionByRegex("com.gradle", "develocity-gradle-plugin", rcAndMilestonesPattern)
                }
            }
    
            gradlePluginPortal()
        }
    }
    
    include("architecture-docs")
    include("build-environment")
    include("configuration-cache-compatibility")
    include("default-settings-plugins")
    include("version-catalogs")
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:57 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/fess/es/stopwords.txt

    ni
    contra
    otros
    ese
    eso
    ante
    ellos
    e
    esto
    mí
    antes
    algunos
    qué
    unos
    yo
    otro
    otras
    otra
    él
    tanto
    esa
    estos
    mucho
    quienes
    nada
    muchos
    cual
    poco
    ella
    estar
    estas
    algunas
    algo
    nosotros
    mi
    mis
    tú
    te
    ti
    tu
    tus
    ellas
    nosotras
    vosotros
    vosotras
    os
    mío
    mía
    míos
    mías
    tuyo
    tuya
    tuyos
    tuyas
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Click Count (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodTableRenderer.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.MethodDoc;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    public class MethodTableRenderer {
        public void renderTo(Iterable<MethodDoc> methods, Element parent) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

         *
         * @param body the search parameters for querying documents
         * @return JSON response containing search results
         */
        // GET /api/admin/searchlist/docs
        // PUT /api/admin/searchlist/docs
        @Execute
        public JsonResponse<ApiResult> docs(final SearchBody body) {
            validateApi(body, messages -> {});
    
            if (StringUtil.isBlank(body.q)) {
                // query matches on all documents.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.2K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                task.from(project.zipTree(groovyPackageListConf.map(Configuration::getSingleFile)));
                // See https://docs.oracle.com/en/java/javase/21/docs/specs/man/javadoc.html#option-linkoffline
                task.include("package-list", "element-list");
                task.into(layout.getBuildDirectory().dir("groovyPackageList"));
            });
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 01 05:52:34 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.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 gradlebuild.docs;
    
    import org.gradle.api.file.ConfigurableFileCollection;
    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.provider.Property;
    
    import java.net.URI;
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 21 16:24:54 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/DocGenerationException.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 gradlebuild.docs;
    
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class DocGenerationException extends RuntimeException {
        public DocGenerationException(String message) {
            super(message);
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 968 bytes
    - Click Count (0)
  9. .teamcity/subprojects.json

        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "docs",
        "path": "platforms/documentation/docs",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "docs-asciidoctor-extensions",
        "path": "platforms/documentation/docs-asciidoctor-extensions",
        "unitTests": false,
        "functionalTests": false,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 15:03:00 GMT 2026
    - 42K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

            var pos = startAfterIntro
            var pastBlankLine = false
            for (line in lines) {
                if (pastBlankLine && !line.startsWith("- ") && line.isNotBlank()) {
                    return pos
                }
                if (line.isNotBlank()) {
                    pastBlankLine = true
                }
                pos += line.length + 1 // +1 for the newline
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
Back to Top