Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 219 for strnames (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

        for (i in 0 until COUNT) {
          if (!other.isSet(i)) continue
          set(i, other[i])
        }
      }
    
      companion object {
        /**
         * From the HTTP/2 specs, the default initial window size for all streams is 64 KiB. (Chrome 25
         * uses 10 MiB).
         */
        const val DEFAULT_INITIAL_WINDOW_SIZE = 65535
    
        /** HTTP/2: Size in bytes of the table used to decode the sender's header blocks. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/compress/gzip/gunzip.go

    //
    // Calling Multistream(false) disables this behavior; disabling the behavior
    // can be useful when reading file formats that distinguish individual gzip
    // data streams or mix gzip data streams with other data streams.
    // In this mode, when the [Reader] reaches the end of the data stream,
    // [Reader.Read] returns [io.EOF]. The underlying reader must implement [io.ByteReader]
    // in order to be left positioned just after the gzip stream.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

        iter->Unref();
      }
      // The XlaDeviceContext keeps a reference count to the streams, and the
      // XlaDeviceContext remains live for the duration of a Executor run. This
      // ensures that the streams remain live for the duration of a run, even if
      // an error is encountered and the streams are replaced with new ones.
      for (const auto& iter : shape_determination_fns_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleBuilder.java

         */
        ExecHandleBuilder setDaemon(boolean daemon);
    
        /**
         * Sets a handler for the output streams of the process.
         */
        ExecHandleBuilder streamsHandler(StreamsHandler streamsHandler);
    
        /**
         * Sets the start-up timeout, when spawning a process. Not used when forking a process (the default).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device_context.h

     private:
      bool UseMultipleStreams() const { return stream_ != host_to_device_stream_; }
    
      // The main compute stream of the device, used to synchronize the transfer
      // streams if they are set.
      std::shared_ptr<se::Stream> stream_;
      // The stream to use for transferring data from host to device. Can be
      // idential to stream_, but must not be nullptr.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/EntryDetails.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.cacheentry
    
    import org.gradle.cache.internal.streams.BlockAddress
    import org.gradle.util.Path
    import java.io.File
    
    
    /**
     * Data stored in the "entry details" file. Provides some metadata about the cache entry.
     */
    internal
    class EntryDetails(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            def matches = projects.findAll { it.name == name }
            assert matches.size() == 1
            return matches[0]
        }
    
        void assertHasLibs(String... jarNames) {
            assert libs*.jarName == jarNames as List
        }
    
        EclipseLibrary lib(String jarName) {
            def matches = libs.findAll { it.jarName.contains(jarName) } + vars.findAll { it.jarName == jarName }
            assert matches.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/BlockAddress.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal.streams;
    
    /**
     * An opaque (outside this package) pointer to a block in a file.
     */
    public class BlockAddress {
        final int fileId;
        final long pos;
        final long length;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/Destination.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import java.io.Serializable;
    
    /**
     * Enumerates possible output streams for {@link TestOutputEvent}.
     *
     * @since 6.0
     */
    public enum Destination implements Serializable {
    
        StdOut(0),
        StdErr(1);
    
        private final int code;
    
         Destination(int code) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	// Close resets all streams and closes the connection.
    	Close() error
    	// CloseChan returns a channel that is closed when the underlying connection is closed.
    	CloseChan() <-chan bool
    	// SetIdleTimeout sets the amount of time the connection may remain idle before
    	// it is automatically closed.
    	SetIdleTimeout(timeout time.Duration)
    	// RemoveStreams can be used to remove a set of streams from the Connection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top