Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 263 for flushed (0.19 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

          webSocket!!.initReaderAndWriter(name, this)
        }
    
        /**
         * Peeks the number of bytes available for the client to read immediately. This doesn't block so
         * it requires that bytes have already been flushed by the server.
         */
        fun clientSourceBufferSize(): Long {
          source.request(1L)
          return source.buffer.size
        }
    
        fun processNextFrame(): Boolean {
          taskFaker.runTasks()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            1 * downstreamListener.onOutput({ it.toString() == "[WARN] [category] message for task b" })
            0 * downstreamListener._
        }
    
        def "forwards header again when status changes after output is flushed (verbose: #verbose)"() {
            def olderTimestamp = 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    	}
    
    	if err := s.ztunnelServer.PodDeleted(ctx, string(pod.UID)); err != nil {
    		return err
    	}
    	return nil
    }
    
    // syncHostIPSets is called after the host node ipset has been created (or found + flushed)
    // during initial snapshot creation, it will insert every snapshotted pod's IP into the set.
    //
    // The set does not allow dupes (obviously, that would be undefined) - but in the real world due to misconfigured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (response.getHttpStatusCode() == 200) {
                    logger.info("Flushed config files.");
                } else {
                    logger.warn("Failed to flush config files.");
                }
            } catch (final Exception e) {
                logger.warn("Failed to flush config files.", e);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. internal/logger/target/http/http.go

    		atomic.AddInt64(&h.totalMessages, 1)
    		atomic.AddInt64(&h.failedMessages, 1)
    		return errors.New("log buffer full")
    	}
    
    	return nil
    }
    
    // Cancel - cancels the target.
    // All queued messages are flushed and the function returns afterwards.
    // All messages sent to the target after this function has been called will be dropped.
    func (h *Target) Cancel() {
    	atomic.StoreInt32(&h.status, statusClosed)
    	h.storeCtxCancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/compress/flate/deflate.go

    // If the underlying writer returns an error, Flush returns that error.
    //
    // In the terminology of the zlib library, Flush is equivalent to Z_SYNC_FLUSH.
    func (w *Writer) Flush() error {
    	// For more about flushing:
    	// https://www.bolet.org/~pornin/deflate-flush.html
    	return w.d.syncFlush()
    }
    
    // Close flushes and closes the writer.
    func (w *Writer) Close() error {
    	return w.d.close()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/compress/flate/huffman_bit_writer.go

    	badCode          = 255
    
    	// bufferFlushSize indicates the buffer size
    	// after which bytes are flushed to the writer.
    	// Should preferably be a multiple of 6, since
    	// we accumulate 6 bytes between writes to the buffer.
    	bufferFlushSize = 240
    
    	// bufferSize is the actual output byte buffer size.
    	// It must have additional headroom for a flush
    	// which can contain up to 8 bytes.
    	bufferSize = bufferFlushSize + 8
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/emit.go

    		return fmt.Errorf("writing %s: %v\n", s.mftmp, err)
    	}
    	if err := s.mf.Close(); err != nil {
    		return fmt.Errorf("closing meta data temp file: %v", err)
    	}
    
    	// Temp file has now been flushed and closed. Rename the temp to the
    	// final desired path.
    	if err := os.Rename(s.mftmp, s.mfname); err != nil {
    		return fmt.Errorf("writing %s: rename from %s failed: %v\n", s.mfname, s.mftmp, err)
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/runtime/mfinal.go

    // associated operating system file descriptor when a program discards
    // an os.File without calling Close, but it would be a mistake
    // to depend on a finalizer to flush an in-memory I/O buffer such as a
    // [bufio.Writer], because the buffer would not be flushed at program exit.
    //
    // It is not guaranteed that a finalizer will run if the size of *obj is
    // zero bytes, because it may share same address with other zero-size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// the caller may return a flag indicating whether the result should be flushed as writes occur
    	// and a content type string that indicates the type of the stream.
    	// If a null stream is returned, a StatusNoContent response wil be generated.
    	InputStream(ctx context.Context, apiVersion, acceptHeader string) (stream io.ReadCloser, flush bool, mimeType string, err error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top