- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 450 for prefixo (0.1 sec)
-
tensorflow/c/c_api_test.cc
} void BuildGraphAndAddGradientsWithPrefixes(const char* prefix1, const char* prefix2 = nullptr) { TF_Output inputs[2]; TF_Output outputs[1]; TF_Output grad_outputs[2]; BuildSuccessGraph(inputs, outputs); AddGradients(false, prefix1, inputs, 2, outputs, 1, grad_outputs); if (prefix2 != nullptr) {
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
return hash; } public String appendLineNumber(final String prefix, final String content) { if (StringUtil.isBlank(content)) { return StringUtil.EMPTY; } final String[] values = content.split("\n"); final StringBuilder buf = new StringBuilder((int) (content.length() * 1.3)); buf.append(prefix).append(1).append(':').append(values[0]);
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12K bytes - Viewed (0) -
src/main/resources/fess_env_web.properties
mail.send.mock = false # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = # The common return path of all mail mail.return.path = root@localhost # ========================================================================================
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/resources/fess_env_suggest.properties
mail.send.mock = false # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = # The common return path of all mail mail.return.path = root@localhost # ========================================================================================
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/02-pkgsite-removal.yml
attributes: label: "What is the path of the package that you would like to have removed?" description: | We can remove packages with a shared path prefix. For example, a request for 'github.com/author' would remove all pkg.go.dev pages with that package path prefix. validations: required: true - type: textarea id: package-owner attributes: label: "Are you the owner of this package?"
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
๐ ๐ โ โฒ & ๐ ๐ด ๐จ ๐ด. โซ๏ธ ๐ ๐ซ ๐ ๐ญ. ๐ถ /// ### ๐ `APIRouter` โฎ๏ธ ๐ `prefix`, `tags`, `responses`, & `dependencies` ๐, โก๏ธ ๐ ๐ ๐ข ๐ค ๐ `app/internal/admin.py` ๐. โซ๏ธ ๐ `APIRouter` โฎ๏ธ ๐ก *โก ๐ ๏ธ* ๐ ๐ ๐ข ๐ฐ ๐ ๐ ๐. ๐ ๐ผ โซ๏ธ ๐ ๐ ๐ . โ๏ธ โก๏ธ ๐ฌ ๐ โฉ๏ธ โซ๏ธ ๐ฐ โฎ๏ธ ๐ ๐ ๐ข, ๐ฅ ๐ซ๐ ๐ โซ๏ธ & ๐ฎ `prefix`, `dependencies`, `tags`, โ๏ธ. ๐ `APIRouter`: ```Python hl_lines="3" title="app/internal/admin.py"
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.5K bytes - Viewed (0) -
cmd/erasure-healing.go
dirQuorum: 1, objQuorum: 1, bucket: bucket, strict: false, // Allow less strict matching. } path := baseDirFromPrefix(prefix) filterPrefix := strings.Trim(strings.TrimPrefix(prefix, path), slashSeparator) if path == prefix { filterPrefix = "" } lopts := listPathRawOptions{ disks: disks, fallbackDisks: fallbackDisks, bucket: bucket,
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Wed Oct 02 17:50:41 UTC 2024 - 34.4K bytes - Viewed (0) -
docs/en/docs/advanced/sub-applications.md
You will see the automatic API docs for the sub-application, including only its own _path operations_, all under the correct sub-path prefix `/subapi`: <img src="/img/tutorial/sub-applications/image02.png"> If you try interacting with any of the two user interfaces, they will work correctly, because the browser will be able to talk to each specific app or sub-app.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-param-models.md
``` //// //// tab | Python 3.10+ non-Annotated /// tip | Dica Prefira utilizar a versรฃo `Annotated` se possรญvel. /// ```Python hl_lines="9-13 17" {!> ../../docs_src/query_param_models/tutorial001_py310.py!} ``` //// //// tab | Python 3.9+ non-Annotated /// tip | Dica Prefira utilizar a versรฃo `Annotated` se possรญvel. /// ```Python hl_lines="8-12 16"
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 09:53:14 UTC 2024 - 4.1K bytes - Viewed (0) -
internal/kms/stub.go
func (s StubKMS) ListKeys(ctx context.Context, req *ListRequest) ([]madmin.KMSKeyInfo, string, error) { matches := []madmin.KMSKeyInfo{} if req.Prefix == "" { req.Prefix = "*" } for _, keyName := range s.KeyNames { if wildcard.MatchAsPatternPrefix(req.Prefix, keyName) { matches = append(matches, madmin.KMSKeyInfo{Name: keyName, CreatedAt: StubCreatedAt, CreatedBy: StubCreatedBy}) } } return matches, "", nil
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 3.6K bytes - Viewed (0)