- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 802 for process (0.05 sec)
-
architecture/environments/operator.md
different parts of the configuration tree are correct. For example, it's an error to enable a component while its parent feature is disabled. ## Manifest creation Manifest rendering is a multi-step process, shown in the figure below. ![rendering process](images/operator_render_flow.svg) The example in the figure shows the rendering being triggered by a CLI `mesh`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 21:11:35 UTC 2024 - 13.2K bytes - Viewed (0) -
cni/pkg/install/install.go
} else { installLog.Infof("valid Istio config present in node-level CNI file %s, not modifying", in.cniConfigFilepath) } return copiedFiles, nil } // Run starts the installation process, verifies the configuration, then sleeps. // If the configuration is invalid, a full redeployal of config, binaries, and svcAcct credentials to the // shared node CNI dir will be attempted. //
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 09 21:33:51 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); fessConfig.getApiCorsAllowOriginList().forEach(s -> factory.add(s, this)); } @Override public void process(final String origin, final ServletRequest request, final ServletResponse response) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final HttpServletResponse httpResponse = (HttpServletResponse) response;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java
/** * Add an url pattern as a non-target. * * @param urlPattern Regular expression that is not crawled */ void addExclude(String urlPattern); /** * Process an url when it's added as a seed url. * * @param url URL */ void processUrl(String url); /** * Clear this filter. */ void clear();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/zh-hant/docs/fastapi-cli.md
<font color="#4E9A06">INFO</font>: Uvicorn running on <b>http://127.0.0.1:8000</b> (Press CTRL+C to quit) <font color="#4E9A06">INFO</font>: Started reloader process [<font color="#34E2E2"><b>2265862</b></font>] using <font color="#34E2E2"><b>WatchFiles</b></font> <font color="#4E9A06">INFO</font>: Started server process [<font color="#06989A">2265873</font>] <font color="#4E9A06">INFO</font>: Waiting for application startup.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 18 12:12:01 UTC 2024 - 6.1K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt
"org/gradle/platform/**", "org/gradle/plugin/devel/**", "org/gradle/plugin/use/*", "org/gradle/plugin/management/*", "org/gradle/plugins/**", "org/gradle/process/**", "org/gradle/testfixtures/**", "org/gradle/testing/jacoco/**", "org/gradle/tooling/**", "org/gradle/swiftpm/**", "org/gradle/model/**", "org/gradle/testkit/**",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 23:20:08 UTC 2024 - 2.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt
} readControlFrame() } } /** * Reads a message body into across one or more frames. Control frames that occur between * fragments will be processed. If the message payload is masked this will unmask as it's being * processed. */ @Throws(IOException::class) private fun readMessage() { while (true) { if (closed) throw IOException("closed") if (frameLength > 0L) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 9.8K bytes - Viewed (0) -
cni/pkg/nodeagent/podcgroupns.go
return r < '0' || r > '9' } func (p *PodNetnsProcFinder) FindNetnsForPods(pods map[types.UID]*corev1.Pod) (PodToNetns, error) { /* for each process, find its netns inode, if we already seen the inode, skip it if we haven't seen the inode, check the process cgroup and see if we can extract a pod uid from it. if we can, open the netns, and save a map of uid->netns-fd */ podUIDNetns := make(PodToNetns)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 12 21:47:31 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
private ComponentUtil() { } public static void processAfterContainerInit(final Runnable process) { if (available()) { process.run(); } else { initProcesses.add(process); } } public static void doInitProcesses(final Consumer<? super Runnable> action) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java
import org.codelibs.fess.dict.DictionaryManager; import org.codelibs.fess.util.RenderDataUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; import org.lastaflute.web.ruts.process.ActionRuntime; import jakarta.annotation.Resource; /** * @author Keiichi Watanabe */ public class AdminDictAction extends FessAdminAction { public static final String ROLE = "admin-dict";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.8K bytes - Viewed (0)