Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for true (0.05 sec)

  1. pom.xml

    				<version>0.7.0</version>
    				<extensions>true</extensions>
    				<configuration>
    					<publishingServerId>central</publishingServerId>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
    	<dependencies>
    		<dependency>
    			<groupId>org.slf4j</groupId>
    			<artifactId>slf4j-api</artifactId>
    			<version>2.0.16</version>
    			<optional>true</optional>
    		</dependency>
    		<dependency>
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Dec 20 04:15:34 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            try {
                final File file = File.createTempFile(prefix, suffix);
                file.setReadable(false, false);
                file.setReadable(true, true);
                file.setWritable(false, false);
                file.setWritable(true, true);
                if (logger.isDebugEnabled()) {
                    logger.debug("Create {} as a temp file.", file.getAbsolutePath());
                }
                return file;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  3. pom.xml

    				<artifactId>formatter-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<configuration>
    					<systemPropertyVariables>
    						<log4j2.disable.jmx>true</log4j2.disable.jmx>
    					</systemPropertyVariables>
    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-javadoc-plugin</artifactId>
    			</plugin>
    			<plugin>
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sat Dec 20 06:20:25 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                return true;
            });
        }
    
        /**
         * Updates a single field of a document.
         *
         * @param id The document ID to update
         * @param field The field name to update
         * @param value The new value for the field
         * @return true if the update was successful, false otherwise
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  5. pom.xml

    							<includeScope>provided</includeScope>
    							<outputDirectory>${project.build.directory}/tomcat-lib</outputDirectory>
    							<includes>**/*</includes>
    							<overWriteReleases>true</overWriteReleases>
    							<overWriteSnapshots>true</overWriteSnapshots>
    						</configuration>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<configuration>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  6. pom.xml

    		<repository>
    			<id>snapshots.central.sonatype.com</id>
    			<url>https://central.sonatype.com/repository/maven-snapshots</url>
    			<releases>
    				<enabled>false</enabled>
    			</releases>
    			<snapshots>
    				<enabled>true</enabled>
    			</snapshots>
    		</repository>
    	</repositories>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Dec 20 06:34:36 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. fess-crawler-opensearch/pom.xml

    			<version>${project.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs.fess</groupId>
    			<artifactId>fess-crawler-lasta</artifactId>
    			<version>${project.version}</version>
    			<optional>true</optional>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>corelib</artifactId>
    			<version>${corelib.version}</version>
    		</dependency>
    		<dependency>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Dec 20 06:34:36 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. pom.xml

    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<groupId>org.sonatype.central</groupId>
    				<artifactId>central-publishing-maven-plugin</artifactId>
    				<version>0.7.0</version>
    				<extensions>true</extensions>
    				<configuration>
    					<publishingServerId>central</publishingServerId>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
    	<dependencies>
    		<dependency>
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Sat Dec 20 04:17:15 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

             *
             * @return the committed mapping item, or null if no item was pending
             */
            public CharMappingItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
                    try {
                        writer.write(item.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

             * @return The committed item, or null if no item was committed.
             * @throws DictionaryException if an I/O error occurs.
             */
            public StemmerOverrideItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
                    try {
                        writer.write(item.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top