- Sort Score
- Result 10 results
- Languages All
Results 1621 - 1630 of 1,966 for myitem (0.14 sec)
-
tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py310.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Apr 19 00:11:40 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
loc.share = this.share; loc.dfsReferral = this.dfsReferral; loc.unc = this.unc; if ( this.addresses != null ) { loc.addresses = new UniAddress[this.addresses.length]; System.arraycopy(this.addresses, 0, loc.addresses, 0, this.addresses.length); } loc.addressIndex = this.addressIndex; loc.type = this.type; return loc; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
docs/em/docs/advanced/response-directly.md
**FastAPI** ๐ ๐ `starlette.responses` `fastapi.responses` ๐ช ๐, ๐ฉโ๐ป. โ๏ธ ๐ ๐ช ๐จ ๐ ๐ โช๏ธโก๏ธ ๐. /// ## ๐ฌ ๐ `Response` ๐ผ ๐ ๐ฆ ๐ ๐ ๐ ๐ช, โ๏ธ โซ๏ธ ๐ซ ๐ถ โ , ๐ ๐ช โ๏ธ ๐จ `item` ๐, & **FastAPI** ๐ ๐ฎ โซ๏ธ `JSONResponse` ๐, ๐ญ โซ๏ธ `dict`, โ๏ธ. ๐ ๐ ๐ข. ๐, โก๏ธ ๐ โ ๐ ๐ช โ๏ธ ๐ ๐จ ๐ ๐จ. โก๏ธ ๐ฌ ๐ ๐ ๐ ๐จ <a href="https://en.wikipedia.org/wiki/XML" class="external-link" target="_blank">๐</a> ๐จ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.6K bytes - Viewed (0) -
prepare_stmt.go
defer close(cacheStmt.prepared) // Reason why cannot lock conn.PrepareContext // suppose the maxopen is 1, g1 is creating record and g2 is querying record. // 1. g1 begin tx, g1 is requeue because of waiting for the system call, now `db.ConnPool` db.numOpen == 1. // 2. g2 select lock `conn.PrepareContext(ctx, query)`, now db.numOpen == db.maxOpen , wait for release.
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Aug 22 11:02:05 UTC 2024 - 6.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
} protected void processSystemError(final Object... objs) { final Throwable t = (Throwable) objs[0]; if (logger.isErrorEnabled()) { logger.error("System Error.", t); } } protected void processNoRule(final Object... objs) { // CrawlerContext crawlerContext = (CrawlerContext) objs[0]; // UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1];
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /error/redirect.jsp */ HtmlNext path_Error_RedirectJsp = new HtmlNext("/error/redirect.jsp"); /** The path of the HTML: /error/system.jsp */ HtmlNext path_Error_SystemJsp = new HtmlNext("/error/system.jsp"); /** The path of the HTML: /footer.jsp */ HtmlNext path_FooterJsp = new HtmlNext("/footer.jsp"); /** The path of the HTML: /header.jsp */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayMap.java
*/ protected Entry<K, V> removeList(final int index) { final Entry<K, V> e = listTable[index]; final int numMoved = size - index - 1; if (numMoved > 0) { System.arraycopy(listTable, index + 1, listTable, index, numMoved); } listTable[--size] = null; return e; } /** * ใตใคใบใ้พๅคใ่ถ ใใๅ ดๅใซๅฎน้ใ็ขบไฟใใพใใ */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 20.6K bytes - Viewed (0) -
internal/config/api/api.go
package api import ( "encoding/json" "errors" "fmt" "math" "strconv" "strings" "time" "github.com/minio/minio/internal/config" "github.com/minio/pkg/v3/env" ) // API sub-system constants const ( apiRequestsMax = "requests_max" apiClusterDeadline = "cluster_deadline" apiCorsAllowOrigin = "cors_allow_origin" apiRemoteTransportDeadline = "remote_transport_deadline"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* * - method reference: Inside Google, CacheBuilder is used from the implementation of a custom * ClassLoader that is sometimes used as a system classloader. That's a problem because * method-reference linking tries to look up the system classloader, and it fails because there * isn't one yet. * * - lambda: Outside Google, we got a report of a similar problem in
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 52K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
throw new SuggestSettingsException("Failed to create mappings."); } } protected String loadIndexSettings() throws IOException { final String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY); final StringBuilder sb = new StringBuilder(); try (BufferedReader br = new BufferedReader(new InputStreamReader(
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 10.9K bytes - Viewed (0)