- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 7,303 for recur2 (0.05 seconds)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
return rdmaReceives.get(); } /** * Get total bytes transferred via RDMA * * @return total bytes */ public long getBytesTransferred() { return bytesTransferred.get(); } /** * Get total number of operation errors * * @return error count */ public long getOperationErrors() { return operationErrors.get();
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 10.7K bytes - Click Count (0) -
src/archive/tar/strconv.go
size += len(strconv.Itoa(size)) record := strconv.Itoa(size) + " " + k + "=" + v + "\n" // Final adjustment if adding size field increased the record size. if len(record) != size { size = len(record) record = strconv.Itoa(size) + " " + k + "=" + v + "\n" } return record, nil } // validPAXRecord reports whether the key-value pair is valid where each // record is formatted as: //
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Sep 08 17:08:20 GMT 2025 - 9.1K bytes - Click Count (0) -
internal/s3select/sql/evaluate.go
if err != nil { return nil, err } return FromBytes(bs), nil case []Value: return FromArray(rval), nil case nil: return FromNull(), nil case Missing: return FromMissing(), nil } return nil, fmt.Errorf("Unhandled value type: %T", result) } func (e *PrimaryTerm) evalNode(r Record, tableAlias string) (res *Value, err error) { switch { case e.Value != nil: return e.Value.evalNode(r)Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12K bytes - Click Count (0) -
src/cmd/api/main_test.go
mark(n.Name) } return false case *ast.TypeSpec: if isDeprecated(n.Doc) { mark(n.Name) } return true // recurse into struct or interface type case *ast.StructType: return true // recurse into fields case *ast.InterfaceType: return true // recurse into methods case *ast.FieldList: return true // recurse into fields case *ast.ValueSpec:
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Feb 20 03:25:33 GMT 2025 - 31.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
* * @return The total record count */ public long getAllRecordCount() { return allRecordCount; } /** * Gets the relation type for the record count (e.g., "eq", "gte"). * * @return The record count relation */ public String getAllRecordCountRelation() { return allRecordCountRelation; } /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.5K bytes - Click Count (0) -
internal/s3select/sql/statement.go
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9K bytes - Click Count (0) -
tensorflow/c/c_api_function.cc
return; } tensorflow::mutex_lock l(g->mu); status->status = g->graph.AddFunctionDef(func->record->fdef(), func->record->stack_traces()); if (TF_GetCode(status) != TF_OK) return; if (!grad) return; status->status = g->graph.AddFunctionDef(grad->record->fdef(),
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 12 16:27:48 GMT 2024 - 13.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java
this.artifacts = artifacts; } public ClassRealm getRealm() { return realm; } public ExtensionDescriptor getDescriptor() { return descriptor; } public List<Artifact> getArtifacts() { return artifacts; } } Key createKey(List<Artifact> extensionArtifacts); CacheRecord get(Key key);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
val domainMatch = if (hostOnly) { url.host == domain } else { domainMatch(url.host, domain) } if (!domainMatch) return false if (!pathMatch(url, path)) return false return !secure || url.isHttps } override fun equals(other: Any?): Boolean = other is Cookie && other.name == name && other.value == value &&Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon May 05 16:01:00 GMT 2025 - 23.1K bytes - Click Count (0) -
tests/test_multipart_installation.py
with warnings.catch_warnings(record=True): warnings.simplefilter("always") monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): app = FastAPI() @app.post("/") async def root(username: str = Form()): return username # pragma: nocover
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sun Oct 27 21:46:26 GMT 2024 - 5.7K bytes - Click Count (0)