- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for putA (0.03 sec)
-
docs/en/docs/python-types.md
#### List For example, let's define a variable to be a `list` of `str`. //// tab | Python 3.9+ Declare the variable, with the same colon (`:`) syntax. As the type, put `list`. As the list is a type that contains some internal types, you put them in square brackets: ```Python hl_lines="1" {!> ../../docs_src/python_types/tutorial006_py39.py!} ``` //// //// tab | Python 3.8+
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:47:53 UTC 2024 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
paramMap.put(Param.Client.PROXY_HOST, proxyHost); paramMap.put(Param.Client.PROXY_PORT, proxyPort); final String proxyUsername = fessConfig.getHttpProxyUsername(); final String proxyPassword = fessConfig.getHttpProxyPassword(); if (proxyUsername != null && proxyPassword != null) {
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/en/docs/tutorial/first-steps.md
While building an API, the "path" is the main way to separate "concerns" and "resources". #### Operation "Operation" here refers to one of the HTTP "methods". One of: * `POST` * `GET` * `PUT` * `DELETE` ...and the more exotic ones: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` In the HTTP protocol, you can communicate to each path using one (or more) of these "methods". ---
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:48:16 UTC 2024 - 11.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
addFieldRule(name, xpath); fieldPrunedRuleMap.put(name, isPruned); } public void setConvertUrlMap(final Map<String, String> convertUrlMap) { this.convertUrlMap.putAll(convertUrlMap); } public void addConvertUrl(final String regex, final String replacement) { convertUrlMap.put(regex, replacement); }
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
``` //// ### Technical details about the JWT "subject" `sub` The JWT specification says that there's a key `sub`, with the subject of the token. It's optional to use it, but that's where you would put the user's identification, so we are using it here. JWT might be used for other things apart from identifying a user and allowing them to perform operations directly on your API.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:45:10 UTC 2024 - 12.8K bytes - Viewed (0) -
common/config/.golangci.yml
# default is false: such cases aren't reported by default. check-blank: false govet: disable: # report about shadowed variables - shadow goimports: # put imports beginning with prefix after 3rd-party packages; # it's a comma-separated list of prefixes local-prefixes: istio.io/ misspell: # Correct spellings using locale preferences for US or UK.
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
protected PathMappingHelper getPathMappingHelper() { return new PathMappingHelper(); } }; fessXpathTransformer.init(); fessXpathTransformer.convertUrlMap.put("feed:", "http:"); List<RequestData> urlList = new ArrayList<>(); urlList = fessXpathTransformer.convertChildUrlList(urlList); assertEquals(0, urlList.size()); urlList.clear();
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
src/bufio/bufio_test.go
// Normal execution. for { r1, _, err := r.ReadRune() if err != nil { if err != io.EOF { t.Error("unexpected error on ReadRune:", err) } break } got += string(r1) // Put it back and read it again. if err = r.UnreadRune(); err != nil { t.Fatal("unexpected error on UnreadRune:", err) } r2, _, err := r.ReadRune() if err != nil {
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Mon Oct 28 21:04:51 UTC 2024 - 51.6K bytes - Viewed (0) -
cmd/xl-storage.go
var bufp *[]byte switch { case fileSize <= xioutil.SmallBlock: bufp = xioutil.ODirectPoolSmall.Get().(*[]byte) defer xioutil.ODirectPoolSmall.Put(bufp) default: bufp = xioutil.ODirectPoolLarge.Get().(*[]byte) defer xioutil.ODirectPoolLarge.Put(bufp) } var written int64 if odirectEnabled { written, err = xioutil.CopyAligned(diskHealthWriter(ctx, w), r, *bufp, fileSize, w) } else {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (2) -
.bazelrc
# the pip package on Windows without an intermediate data-file archive, as the # build_pip_package script in its current form (as of Aug 2023) uses the # runfiles symlink tree to decide what to put into the Python wheel. startup --windows_enable_symlinks build:windows --enable_runfiles # Default paths for TF_SYSTEM_LIBS build:linux --define=PREFIX=/usr build:linux --define=LIBDIR=$(PREFIX)/lib
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0)