- Sort Score
- Result 10 results
- Languages All
Results 871 - 880 of 1,350 for nread (0.04 sec)
-
cmd/metacache-walk.go
// while being concurrently listed at the same time in // such scenarios the 'xl.meta' might get truncated if !IsErrIgnored(err, io.EOF, io.ErrUnexpectedEOF) { internalLogOnceIf(ctx, err, "metacache-walk-read-metadata") } continue } meta.name = strings.TrimSuffix(entry, xlStorageFormatFile) meta.name = strings.TrimSuffix(meta.name, SlashSeparator) meta.name = pathJoinBuf(sb, current, meta.name)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Jun 01 05:17:37 UTC 2024 - 12.4K bytes - Viewed (0) -
api/go1.9.txt
pkg syscall, type Conn interface { SyscallConn } pkg syscall, type Conn interface, SyscallConn() (RawConn, error) pkg syscall, type RawConn interface { Control, Read, Write } pkg syscall, type RawConn interface, Control(func(uintptr)) error pkg syscall, type RawConn interface, Read(func(uintptr) bool) error pkg syscall, type RawConn interface, Write(func(uintptr) bool) error pkg testing, method (*B) Helper() pkg testing, method (*T) Helper()
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 04 20:20:20 UTC 2021 - 10.7K bytes - Viewed (0) -
cmd/object-api-errors.go
return "Unknown" } } // InsufficientReadQuorum storage cannot satisfy quorum for read operation. type InsufficientReadQuorum struct { Bucket string Object string Err error Type RQErrType } func (e InsufficientReadQuorum) Error() string { return "Storage resources are insufficient for the read operation " + e.Bucket + "/" + e.Object } // Unwrap the error.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 09 02:05:14 UTC 2024 - 22.1K bytes - Viewed (0) -
common-protos/k8s.io/api/policy/v1beta1/generated.proto
// readOnlyRootFilesystem when set to true will force containers to run with a read only root file // system. If the container specifically requests to run with a non-read only root file system // the PSP should deny the pod. // If set to false the container may run with a read only root file system if it wishes but it // will not be forced to. // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 19.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 6K bytes - Viewed (0) -
docs/en/docs/tutorial/schema-extra-example.md
You can read more at the end of this page. /// ## `Field` additional arguments When using `Field()` with Pydantic models, you can also declare additional `examples`: //// tab | Python 3.10+
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.6K bytes - Viewed (0) -
internal/logger/logger.go
// Ignore trace logs beyond the following conditions for _, name := range matchingFuncNames { if funcName == name { return trace } } } traceLevel++ // Read stack trace information from PC pc, file, lineNumber, ok = runtime.Caller(traceLevel) } return trace } // HashString - return the highway hash of the passed string func HashString(input string) string {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 22 09:43:48 UTC 2024 - 12.4K bytes - Viewed (0) -
cni/pkg/install/cniconfig.go
if err != nil { return "", err } marshalledJSON = append(marshalledJSON, "\n"...) return writeCNIConfig(ctx, marshalledJSON, cfg) } // writeCNIConfig will // 1. read in the existing CNI config file // 2. append the `istio`-specific entry // 3. write the combined result back out to the same path, overwriting the original.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 8.2K bytes - Viewed (0) -
test-site/activator.bat
echo. echo Options: echo -jvm-debug [port] Turn on JVM debugging, open at the given port. Defaults to 9999 if no port given. echo. echo Environment variables ^(read from context^): echo JAVA_OPTS Environment variable, if unset uses "" echo SBT_OPTS Environment variable, if unset uses "" echo ACTIVATOR_OPTS Environment variable, if unset uses "" echo.
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 7.2K bytes - Viewed (0) -
cmd/object_api_suite_test.go
return &testOneByteReadNoEOF{false, data} } // testOneByteReadNoEOF - implements io.Reader which returns 1 byte and nil error, but // returns io.EOF on the next Read(). type testOneByteReadNoEOF struct { eof bool data []byte } func (r *testOneByteReadNoEOF) Read(p []byte) (n int, err error) { if r.eof { return 0, io.EOF } n = copy(p, r.data) r.eof = true return n, nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 02 15:13:05 UTC 2024 - 33.3K bytes - Viewed (0)