- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 2,532 for created (0.07 sec)
-
CHANGELOG/CHANGELOG-1.17.md
- Modified the scheduling framework's Filter API. ([#82842](https://github.com/kubernetes/kubernetes/pull/82842), [@ahg-g](https://github.com/ahg-g))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/webapp/WEB-INF/view/common/help_ja.jsp
sort 演算子の利用方法は sort:<field>.<order> になります。 <order> は asc または desc で昇順・降順を指定できます。 たとえば、Fess を含むドキュメントでサイズの降順にソートしたい場合、次のように入力します。 <pre>Fess sort:content_length.desc</pre> 標準で利用可能なフィールドは created, content_length および last_modified になります。 設定で指定するフィールドは変更することができます。 </dd> <dt>AND検索</dt> <dd> AND 演算子は省略可能な連結演算子です。 AND 演算子は指定した検索語をすべて含むドキュメントにマッチします。 たとえば、Fess と CodeLibs を含むドキュメント検索するには次のように入力します。
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 3.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
}); if (indexResponse.isAcknowledged()) { logger.info("Created {} index.", index); } else if (logger.isDebugEnabled()) { logger.debug("Failed to create {} index.", index); } }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 23.6K bytes - Viewed (0) -
cni/pkg/iptables/iptables.go
) // CLI: -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT // // DESC: Anything that's already in conntrack as an established connection, accept iptablesBuilder.AppendRule( iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-p", "tcp", "-m", "conntrack", "--ctstate", "RELATED,ESTABLISHED", "-j", "ACCEPT", )
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 15 15:39:28 UTC 2024 - 23.3K bytes - Viewed (0) -
internal/grid/muxserver.go
outBlock: make(chan struct{}, outboundCap), LastPing: time.Now().Unix(), BaseFlags: c.baseFlags, clientPingInterval: c.clientPingInterval, } // Acknowledge Mux created. // Send async. var wg sync.WaitGroup wg.Add(1) go func() { defer wg.Done() var ack message ack.Op = OpAckMux ack.Flags = m.BaseFlags ack.MuxID = m.ID m.send(ack)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 07 15:51:52 UTC 2024 - 9.7K bytes - Viewed (0) -
internal/grid/README.md
A subroute on a client must match a subroute on the server. So routes cannot be used for dynamic routing, unlike HTTP. Handlers should remain backwards compatible. If a breaking API change is required, a new handler ID should be created. ## Setup & Configuration A **Manager** is used to manage all incoming and outgoing connections to a server. On startup all remote servers must be specified.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.4K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental_test.cc
TF_DeleteStatus(status); } // 6. Read `var` using `ctx_1`. This read should succeed since `ctx_1` was // created with `isolate_session_state` set to false, and update should // preserve it. { // Create a handle to `var`, using `ctx_1`. TFE_TensorHandle* var_handle = CreateVarHandle(ctx_1, remote_device, /*variable_name=*/"var");
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 03 03:14:26 UTC 2023 - 31.5K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
``` </div> /// info There are other formats and tools to define and install package dependencies. /// ### Create the **FastAPI** Code * Create an `app` directory and enter it. * Create an empty file `__init__.py`. * Create a `main.py` file with: ```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 28.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
return (int)(fp - start); } /** * This stream class is unbuffered. Therefore this method will always * return 0 for streams connected to regular files. However, a * stream created from a Named Pipe this method will query the server using a * "peek named pipe" operation and return the number of available bytes * on the server. */ public int available() throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.9K bytes - Viewed (0) -
helm-releases/minio-1.0.0.tgz
persistence.enabled=false minio/minio ``` > *"An emptyDir volume is first created when a Pod is assigned to a Node, and exists as long as that Pod is running on that node. When a Pod is removed from a node for any reason, the data in the emptyDir is deleted forever."* Existing PersistentVolumeClai ---------- If a Persistent Volume Claim already exists, specify it during installation. 1. Create the PersistentVolume 2. Create the PersistentVolumeClai 3. Install the chart ```bash helm install --set ...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 20 22:30:54 UTC 2021 - 13.5K bytes - Viewed (0)