Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 881 for spreading (0.13 sec)

  1. src/net/http/internal/chunked.go

    	if cr.err != nil {
    		return
    	}
    	// A sender who sends one byte per chunk will send 5 bytes of overhead
    	// for every byte of data. ("1\r\nX\r\n" to send "X".)
    	// We want to allow this, since streaming a byte at a time can be legitimate.
    	//
    	// A sender can use chunk extensions to add arbitrary amounts of additional
    	// data per byte read. ("1;very long extension\r\nX\r\n" to send "X".)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSourceTransformer.java

     */
    package org.apache.maven.model.building;
    
    import java.nio.file.Path;
    
    import org.apache.maven.model.Model;
    
    /**
     * The ModelSourceTransformer is a way to transform the local pom while streaming the input.
     *
     * The {@link #transform(Path, TransformerContext, Model)} method uses a Path on purpose, to ensure the
     * local pom is the original source.
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. README.md

     * Remove global state
     * Allow per context configuration
     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
     * Large ReadX/WriteX support
     * Streaming list operations
     * NtTransNotifyChange support
     * Google patches: various bugfixes, lastAccess support, retrying requests
     * A proper test suite
     * Various fixes
    
    ## Others
    
    ### This jcifs or jcifs-ng
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // is more specialized.  (The C++ Standard, section
      // [temp.func.order].)  If you stream a non-pointer, then the
      // previous definition will be used.
      //
      // The reason for this overload is that streaming a NULL pointer to
      // ostream is undefined behavior.  Depending on the compiler, you
      // may get "0", "(nil)", "(null)", or an access violation.  To
      // ensure consistent result across compilers, we always treat NULL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. docs/en/docs/reference/responses.md

    # Custom Response Classes - File, HTML, Redirect, Streaming, etc.
    
    There are several custom response classes you can use to create an instance and return them directly from your *path operations*.
    
    Read more about it in the [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/).
    
    You can import them directly from `fastapi.responses`:
    
    ```python
    from fastapi.responses import (
        FileResponse,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. docs/compression/README.md

    # Compression Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server allows streaming compression to ensure efficient disk space usage.
    Compression happens inflight, i.e objects are compressed before being written to disk(s).
    MinIO uses [`klauspost/compress/s2`](https://github.com/klauspost/compress/tree/master/s2)
    streaming compression due to its stability and performance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/LineProcessor.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.io.IOException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A callback to be used with the streaming {@code readLines} methods.
     *
     * <p>{@link #processLine} will be called for each line that is read, and should return {@code
     * false} when you want to stop processing.
     *
     * @author Miles Barr
     * @since 1.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    	}()
    	return <-r.err
    }
    
    // handle implements a WebSocket handler.
    func (r *Reader) handle(ws *websocket.Conn) {
    	// Close the connection when the client requests it, or when we finish streaming, whichever happens first
    	closeConnOnce := &sync.Once{}
    	closeConn := func() {
    		closeConnOnce.Do(func() {
    			ws.Close()
    		})
    	}
    
    	negotiated := ws.Config().Protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Colours arising on the edges is much the same, as will appear to one that shall a little consider it. If a black Object be encompassed with a white one, the Colours which appear through the Prism are to be derived from the Light of the white one, spreading into the Regions of the black, and therefore they appear in a contrary order to that, when a white Object is surrounded with black. And the same is to be understood when an Object is viewed, whose parts are some of them less luminous than others....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/html/SimpleHtmlWriter.java

    import org.gradle.util.internal.TextUtil;
    
    import java.io.IOException;
    import java.io.Writer;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * <p>A streaming HTML writer.</p>
     */
    public class SimpleHtmlWriter extends SimpleMarkupWriter {
    
        public SimpleHtmlWriter(Writer writer) throws IOException {
            this(writer, null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 14:02:57 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top