- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 473 for Inline (0.09 sec)
-
cmd/object-api-utils.go
func getHostsSlice(records []dns.SrvRecord) []string { hosts := make([]string, len(records)) for i, r := range records { hosts[i] = net.JoinHostPort(r.Host, string(r.Port)) } return hosts } // returns an online host (and corresponding port) from a slice of DNS records func getHostFromSrv(records []dns.SrvRecord) (host string) { hosts := getHostsSlice(records) rng := rand.New(rand.NewSource(time.Now().UTC().UnixNano()))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 37.1K bytes - Viewed (0) -
guava/src/com/google/common/hash/Striped64.java
} catch (Exception e) { throw new Error(e); } } } /** * ThreadLocal holding a single-slot int array holding hash code. Unlike the JDK8 version of this * class, we use a suboptimal int[] representation to avoid introducing a new type that can impede * class-unloading when ThreadLocals are not removed. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 11.5K bytes - Viewed (0) -
cmd/object-api-datatypes_gen.go
z.Checksum, bts, err = msgp.ReadBytesBytes(bts, z.Checksum) if err != nil { err = msgp.WrapError(err, "Checksum") return } case "Inlined": z.Inlined, bts, err = msgp.ReadBoolBytes(bts) if err != nil { err = msgp.WrapError(err, "Inlined") return } case "DataBlocks": z.DataBlocks, bts, err = msgp.ReadIntBytes(bts) if err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 70.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java
* implicit target of the methods {@link #peek()}, {@link #poll()} and {@link #remove()} -- is * defined as the <i>least</i> element in the queue according to the queue's comparator. But unlike * a regular priority queue, the methods {@link #peekLast}, {@link #pollLast} and {@link * #removeLast} are also provided, to act on the <i>greatest</i> element in the queue instead. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 34.1K bytes - Viewed (0) -
docs/em/docs/tutorial/sql-databases.md
``` ...& ๐ ๏ธ โซ๏ธ โฎ๏ธ ๐ ๐ฝ ๐ & ๐ (๐ โณ, โณ โ๏ธ ๐ ๐). /// tip ๐ ๐ โธ ๐ ๐ ๐ โ๏ธ ๐ ๐ฅ ๐ ๐ โ๏ธ ๐ ๐ฝ. /// ### โ ๐ธ๐ฒ `engine` ๐ฅ ๐ โ ๐ธ๐ฒ "๐". ๐ฅ ๐ โช โ๏ธ ๐ `engine` ๐ ๐ฅ. ```Python hl_lines="8-10" {!../../docs_src/sql_databases/sql_app/database.py!} ``` #### ๐ โ: ```Python connect_args={"check_same_thread": False}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25K bytes - Viewed (0) -
okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
omega // one : 2014-11-07 One.com A/S one // ong : 2014-03-06 Public Interest Registry ong // onl : 2013-09-16 iRegistry GmbH onl // online : 2015-01-15 Radix FZC online // ooo : 2014-01-09 INFIBEAM AVENUES LIMITED ooo // open : 2015-07-31 American Express Travel Related Services Company, Inc. open // oracle : 2014-06-19 Oracle Corporation
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 240.3K bytes - Viewed (0) -
docs/ja/README.md
[fess.codelibs.org](https://fess.codelibs.org/) ## ๅ้กใ่ณชๅ [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/) ## ใฏใใใซ Fessใ่ฉฆใๆนๆณใฏ2ใคใใใพใใ1ใคใฏ่ชๅใงใใฆใณใญใผใใใฆใคใณในใใผใซใใๆนๆณใใใ1ใคใฏ[Docker](https://www.docker.com/products/docker-engine)ใไฝฟ็จใใๆนๆณใงใใ ### ใใฆใณใญใผใใใใณใคใณในใใผใซ/ๅฎ่ก Fess 14.17ใๅฉ็จๅฏ่ฝใงใ[ใชใชใผในใใผใธ](https://github.com/codelibs/fess/releases "download")ใใใใฆใณใญใผใใงใใพใใใใฆใณใญใผใใซใฏใdebใrpmใzipใฎ3ใคใฎๅฝขๅผใใใใพใใ ไปฅไธใฎใณใใณใใฏใzipใใกใคใซใไฝฟ็จใใไพใงใ๏ผ
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 8.3K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_graph.cc
string name_; }; static TracingContext* GraphTracingFactory(const char* name, TF_Status* s) { return new GraphContext(name); } // Register the tracing implemented in this file as the default tracing engine. static bool register_tracing = [] { RegisterTracingEngineFactory("graphdef", GraphTracingFactory); SetDefaultTracingEngine("graphdef").IgnoreError(); return true; }(); } // namespace graph
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 15.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
} /** * Parses the specified string as a signed decimal integer value. The ASCII character {@code '-'} * (<code>'\u002D'</code>) is recognized as the minus sign. * * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 31K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java
* {@link com.google.common.collect.Multiset} such as {@link * com.google.common.collect.ConcurrentHashMultiset} instead. * * <p><b>Warning:</b> Unlike {@code Multiset}, entries whose values are zero are not automatically * removed from the map. Instead they must be removed manually with {@link #removeAllZeros}. * * @author Charles Fry * @since 11.0 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 14.1K bytes - Viewed (0)