- Sort Score
- Result 10 results
- Languages All
Results 2201 - 2210 of 3,769 for qint (0.03 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenDomain.java
*/ package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.*; public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain { public MsrpcSamrOpenDomain(SamrPolicyHandle handle, int access, rpc.sid_t sid, SamrDomainHandle domainHandle) { super(handle, access, sid, domainHandle); ptype = 0; flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.3K bytes - Viewed (0) -
docs/ko/docs/python-types.md
#### `Tuple`과 `Set` `tuple`과 `set`도 동일하게 선언할 수 있습니다. ```Python hl_lines="1 4" {!../../docs_src/python_types/tutorial007.py!} ``` 이 뜻은 아래와 같습니다: * 변수 `items_t`는, 차례대로 `int`, `int`, `str`인 `tuple`이다. * 변수 `items_s`는, 각 아이템이 `bytes`인 `set`이다. #### `Dict` `dict`를 선언하려면 컴마로 구분된 2개의 파라미터가 필요합니다. 첫 번째 매개변수는 `dict`의 키(key)이고, 두 번째 매개변수는 `dict`의 값(value)입니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/SetHashCodeTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class SetHashCodeTester<E> extends AbstractSetTester<E> { public void testHashCode() { int expectedHashCode = 0; for (E element : getSampleElements()) { expectedHashCode += ((element == null) ? 0 : element.hashCode()); } assertEquals(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3K bytes - Viewed (0) -
cmd/metacache-marker.go
if err != nil { o.ID = mustGetUUID() o.Create = true continue } o.pool = int(v) case "s": // set v, err := strconv.ParseInt(kv[1], 10, 64) if err != nil { o.ID = mustGetUUID() o.Create = true continue } o.set = int(v) default: // Ignore unknown } } } // encodeMarker will encode a uuid and return it as a marker.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 2.5K bytes - Viewed (0) -
internal/deadlineconn/deadlineconn.go
} } } // Read - reads data from the connection using wrapped buffered reader. func (c *DeadlineConn) Read(b []byte) (n int, err error) { c.setReadDeadline() n, err = c.Conn.Read(b) return n, err } // Write - writes data to the connection. func (c *DeadlineConn) Write(b []byte) (n int, err error) { c.setWriteDeadline() n, err = c.Conn.Write(b) return n, err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 26 17:40:11 UTC 2024 - 2.6K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java
import java.nio.file.Path; import java.util.Objects; /** * Wraps an ordinary {@link File} as a source. * */ public class FileSource implements Source { private final Path path; private final int hashCode; /** * Creates a new source backed by the specified file. * * @param file The file, must not be {@code null}. * @deprecated Use {@link #FileSource(Path)} instead. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
tensorflow/c/c_test.c
TF_Tensor* input; TF_Status* s = TF_NewStatus(); TF_GetInput(ctx, 0, &input, s); TF_DeleteTensor(input); TF_DeleteStatus(s); } // Exercises tensorflow's C API. int main(int argc, char** argv) { TF_InitMain(argv[0], &argc, &argv); struct TF_StringStream* s = TF_GetLocalTempDirectories(); const char* path; if (!TF_StringStreamNext(s, &path)) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Apr 24 20:50:35 UTC 2024 - 2.8K bytes - Viewed (0) -
cmd/bucket-listobjects-handlers.go
// - marker if set should have a common prefix with 'prefix' param, otherwise // the request is rejected. func validateListObjectsArgs(prefix, marker, delimiter, encodingType string, maxKeys int) APIErrorCode { // Max keys cannot be negative. if maxKeys < 0 { return ErrInvalidMaxKeys } if encodingType != "" { // AWS S3 spec only supports 'url' encoding type
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 11 03:13:30 UTC 2024 - 11.4K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/classes-as-dependencies.md
{!> ../../docs_src/dependencies/tutorial001_py310.py!} ``` //// 📚 🔢 ⚫️❔ **FastAPI** 🔜 ⚙️ "❎" 🔗. 👯♂️ 💼, ⚫️ 🔜 ✔️: * 📦 `q` 🔢 🔢 👈 `str`. * `skip` 🔢 🔢 👈 `int`, ⏮️ 🔢 `0`. * `limit` 🔢 🔢 👈 `int`, ⏮️ 🔢 `100`. 👯♂️ 💼 💽 🔜 🗜, ✔, 📄 🔛 🗄 🔗, ♒️. ## ⚙️ ⚫️ 🔜 👆 💪 📣 👆 🔗 ⚙️ 👉 🎓. //// tab | 🐍 3️⃣.6️⃣ & 🔛 ```Python hl_lines="19"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
cmd/storage-interface.go
// File operations. ListDir(ctx context.Context, origvolume, volume, dirPath string, count int) ([]string, error) ReadFile(ctx context.Context, volume string, path string, offset int64, buf []byte, verifier *BitrotVerifier) (n int64, err error) AppendFile(ctx context.Context, volume string, path string, buf []byte) (err error)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 5.2K bytes - Viewed (0)