- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 772 for iostream (0.04 sec)
-
ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch
@@ -3,6 +3,11 @@ backported. */ #define _ISOMAC 1 +#define __GLIBC_USE(F) __GLIBC_USE_ ## F + +# define __attribute_alloc_size__(params) \ + __attribute__ ((__alloc_size__ params)) + #include <iostream> using namespace std; diff --git a/sysdeps/aarch64/dl-machine.h b/sysdeps/aarch64/dl-machine.h index 185402f..bbdeae0 100644 --- a/sysdeps/aarch64/dl-machine.h +++ b/sysdeps/aarch64/dl-machine.h
Registered: 2025-05-27 12:39 - Last Modified: 2023-09-18 14:52 - 8.9K bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/builder.devtoolset/gcc9-fixups.patch
@@ -3,6 +3,11 @@ backported. */ #define _ISOMAC 1 +#define __GLIBC_USE(F) __GLIBC_USE_ ## F + +# define __attribute_alloc_size__(params) \ + __attribute__ ((__alloc_size__ params)) + #include <iostream> using namespace std; diff --git a/sysdeps/aarch64/dl-machine.h b/sysdeps/aarch64/dl-machine.h index 185402f..bbdeae0 100644 --- a/sysdeps/aarch64/dl-machine.h +++ b/sysdeps/aarch64/dl-machine.h
Registered: 2025-05-27 12:39 - Last Modified: 2024-11-11 19:25 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/LogStream.java
Registered: 2025-05-25 00:10 - Last Modified: 2019-03-22 20:39 - 1.6K bytes - Viewed (0) -
internal/grid/stream.go
// If the request context is canceled, the stream will no longer process requests. // Requests sent cannot be used any further by the called. Requests chan<- []byte muxID uint64 ctx context.Context } // Send a payload to the remote server. func (s *Stream) Send(b []byte) error { if s.Requests == nil { return errors.New("stream does not accept requests") } select {
Registered: 2025-05-25 19:28 - Last Modified: 2024-06-07 15:51 - 3.1K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/Stream.kt
*/ @ExperimentalOkHttpApi interface Stream { val requestBody: BufferedSource val responseBody: BufferedSink /** * Terminate the stream so that no further data is transmitted or received. Note that * [requestBody] may return data after this call; that is the buffered data received before this * stream was canceled. *
Registered: 2025-05-30 11:42 - Last Modified: 2024-01-23 14:31 - 1.3K bytes - Viewed (0) -
cmd/metacache-stream.go
"github.com/tinylib/msgp/msgp" "github.com/valyala/bytebufferpool" ) // metadata stream format: // // The stream is s2 compressed. // https://github.com/klauspost/compress/tree/master/s2#s2-compression // This ensures integrity and reduces the size typically by at least 50%. // // All stream elements are msgpack encoded. // // 1 Integer, metacacheStreamVersion of the writer.
Registered: 2025-05-25 19:28 - Last Modified: 2025-05-07 15:37 - 19.5K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt
// This file contains members that we should consider to pull upstream // and make available to all Kotlin DSL users package gradlebuild.basics.kotlindsl import org.gradle.process.ExecOperations import java.io.ByteArrayOutputStream import java.io.File /** * `dir / "sub"` is the same as `dir.resolve("sub")`. * * @see [File.resolve] */ operator fun File.div(child: String): File = resolve(child)
Registered: 2025-05-28 11:36 - Last Modified: 2025-05-19 11:33 - 965 bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
} /** * Returns an {@link IntStream} containing the elements of the first stream, followed by the * elements of the second stream, and so on. * * <p>This is equivalent to {@code Stream.of(streams).flatMapToInt(stream -> stream)}, but the * returned stream may perform better. * * @see IntStream#concat(IntStream, IntStream) */ public static IntStream concat(IntStream... streams) {
Registered: 2025-05-30 12:43 - Last Modified: 2025-04-14 16:07 - 37K bytes - Viewed (0) -
docs/debugging/inspect/decrypt-v2.go
} if strings.Contains(stream.Name, "..") || !utf8.ValidString(stream.Name) { return fmt.Errorf("invalid stream name: %q", stream.Name) } dst := filepath.Join(extractDir, stream.Name) os.Mkdir(extractDir, 0o755) w, err := os.Create(dst) if err != nil { return fmt.Errorf("creating output file: %w", err) } _, err = io.Copy(w, stream) if err != nil {
Registered: 2025-05-25 19:28 - Last Modified: 2025-02-17 17:09 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
@Execute @Secured({ ROLE, ROLE + VIEW }) public ActionResponse download(final String id) { if (stream(fessConfig.getIndexBackupAllTargets()).get(stream -> stream.anyMatch(s -> s.equals(id)))) { if ("system.properties".equals(id)) { return asStream(id).contentTypeOctetStream().stream(out -> { try (final ByteArrayOutputStream baos = new ByteArrayOutputStream()) {
Registered: 2025-05-26 08:04 - Last Modified: 2025-03-15 06:53 - 28.6K bytes - Viewed (0)