- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 332 for Services (0.05 sec)
-
guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java
CyclicBarrier barrier = new CyclicBarrier(2); // we need to make sure the error gets thrown on a different thread. ExecutorService service = newSingleThreadExecutor(); try { SequentialExecutor executor = new SequentialExecutor(service); Runnable errorTask = new Runnable() { @Override public void run() { throw new MyError();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.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 org.codelibs.fess.app.service; import java.io.IOException; import java.io.PrintWriter; import java.io.StringWriter; import java.util.List; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.cbean.result.PagingResultBean; import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for managing related query entities. * This service provides operations to retrieve, store, and delete related queries, * which are used to suggest alternative search terms to users. */ public class RelatedQueryService extends FessAppService {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
@Override public String getRepositoryPackageName() { return "repository"; } @Override public String getServicePackageName() { return "service"; } @Override public String getLogicPackageName() { return "logic"; } @Override public String getImplementationSuffix() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
dbflute_fess/dfprop/lastafluteMap.dfprop
# /--------------------------------------------------------------------------- # lastafluteMap: (NotRequired - Default map:{}) # # Specification: # map:{ # ; serviceName = [your service name] # ; domainPackage = [package] # ; environmentList = list:{ [environment name] } # ; isMakeActionHtml = [true or false] # ; commonMap = map:{ # ; path = [relative path to common project from DBFlute client]
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun May 20 08:20:11 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.cbean.result.ListResultBean; import jakarta.annotation.Resource; /** * Service class for managing favorite log operations. * Provides functionality to add URLs to user favorites and retrieve favorite URL lists. * This service handles the persistence and retrieval of favorite log entries in the search system. */ public class FavoriteLogService { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
import jakarta.annotation.Resource; /** * Service class for managing file authentication configurations. * This service provides operations for retrieving, storing, and deleting * file authentication settings used by the Fess search engine. */ public class FileAuthenticationService { /** * Default constructor for file authentication service. * Creates a new instance with default values. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/packaging/common/scripts/prerm
*) echo "pre remove script called with unknown argument \`$1'" >&2 exit 1 ;; esac # Stops the service if [ "$STOP_REQUIRED" = "true" ]; then echo -n "Stopping fess service..." if command -v systemctl >/dev/null; then systemctl --no-reload stop fess.service > /dev/null 2>&1 || true elif [ -x /etc/init.d/fess ]; then if command -v invoke-rc.d >/dev/null; then
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 1.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* Futures.addCallback}.) Still, direct {@code addListener} calls are occasionally useful: * * {@snippet : * final String name = ...; * inFlight.add(name); * ListenableFuture<Result> future = service.query(name); * future.addListener(new Runnable() { * public void run() { * processedCount.incrementAndGet(); * inFlight.remove(name); * lastProcessed.set(name);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
import org.codelibs.fess.Constants; import org.codelibs.fess.annotation.Secured; import org.codelibs.fess.app.pager.FileConfigPager; import org.codelibs.fess.app.service.FileConfigService; import org.codelibs.fess.app.service.LabelTypeService; import org.codelibs.fess.app.service.RoleTypeService; import org.codelibs.fess.app.web.CrudMode; import org.codelibs.fess.app.web.base.FessAdminAction; import org.codelibs.fess.helper.PermissionHelper;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.7K bytes - Viewed (0)