Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,711 for Weaver (0.22 sec)

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

     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    import okio.ByteString
    import okio.ByteString.Companion.encodeUtf8
    
    /** HTTP header: the name is an ASCII string, but the value can be UTF-8. */
    data class Header(
      /** Name in case-insensitive ASCII encoding. */
      @JvmField val name: ByteString,
      /** Value in UTF-8 encoding. */
      @JvmField val value: ByteString,
    ) {
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. internal/bucket/bandwidth/reader.go

    	hdr := r.opts.HeaderSize // remaining header bytes
    	var tokens int           // number of tokens to request
    
    	if hdr > 0 { // available tokens go towards header first
    		if hdr < b { // all of header can be accommodated
    			r.opts.HeaderSize = 0
    			need = int(math.Min(float64(b-hdr), float64(need))) // use remaining tokens towards payload
    			tokens = need + hdr
    
    		} else { // part of header can be accommodated
    			r.opts.HeaderSize -= b - 1
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Wed Sep 06 03:21:59 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  3. cni/pkg/ambient/server.go

    	}
    
    	return client, nil
    }
    
    func (s *Server) Start() {
    	log.Debug("CNI ambient server starting")
    	s.kubeClient.RunAndWait(s.ctx.Done())
    	go func() {
    		s.queue.Run(s.ctx.Done())
    	}()
    }
    
    func (s *Server) Stop() {
    	log.Info("CNI ambient server terminating, cleaning up node net rules")
    	s.cleanupNode()
    }
    
    func (s *Server) UpdateConfig() {
    	log.Debug("Generating new ambient config file")
    Go
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Tue Nov 21 01:17:13 GMT 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/archive/zip/reader.go

    // the [ErrInsecurePath] error and use the returned reader.
    func NewReader(r io.ReaderAt, size int64) (*Reader, error) {
    	if size < 0 {
    		return nil, errors.New("zip: size cannot be negative")
    	}
    	zr := new(Reader)
    	var err error
    	if err = zr.init(r, size); err != nil && err != ErrInsecurePath {
    		return nil, err
    	}
    	return zr, err
    }
    
    func (r *Reader) init(rdr io.ReaderAt, size int64) error {
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/header.jsp

    	role="search">
    	${fe:facetForm()}${fe:geoForm()}
    	<header>
    		<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
    			<div id="content" class="container">
    				<la:link styleClass="navbar-brand d-inline-flex" href="/">
    					<img src="${fe:url('/images/logo-head.png')}"
    						alt="<la:message key="labels.header_brand_name" />"
    						class="align-items-center" />
    				</la:link>
    				<div
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/header.jsp

    	role="search">
    	${fe:facetForm()}${fe:geoForm()}
    	<header>
    		<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
    			<div id="content" class="container">
    				<la:link styleClass="navbar-brand d-inline-flex" href="/">
    					<img src="${fe:url('/images/logo-head.png')}"
    						alt="<la:message key="labels.header_brand_name" />"
    						class="align-items-center" />
    				</la:link>
    				<div
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  7. internal/s3select/csv/reader.go

    	"runtime"
    	"sync"
    	"unicode/utf8"
    
    	csv "github.com/minio/csvparser"
    	"github.com/minio/minio/internal/s3select/sql"
    )
    
    // Reader - CSV record reader for S3Select.
    type Reader struct {
    	args         *ReaderArgs
    	readCloser   io.ReadCloser    // raw input
    	buf          *bufio.Reader    // input to the splitter
    	columnNames  []string         // names of columns
    	nameIndexMap map[string]int64 // name to column index
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  8. internal/hash/reader.go

    )
    
    // A Reader wraps an io.Reader and computes the MD5 checksum
    // of the read content as ETag. Optionally, it also computes
    // the SHA256 checksum of the content.
    //
    // If the reference values for the ETag and content SHA26
    // are not empty then it will check whether the computed
    // match the reference values.
    type Reader struct {
    	src         io.Reader
    	bytesRead   int64
    	expectedMin int64
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Mon Sep 18 17:00:54 GMT 2023
    - 10.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/common/admin/header.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <nav class="main-header navbar navbar-expand navbar-dark navbar-secondary">
    	<ul class="navbar-nav">
    		<li class="nav-item">
    			<a class="nav-link" data-widget="pushmenu" href="#">
    				<em class="fas fa-bars">
    				<span class="sr-only"><la:message
    						key="labels.admin_toggle_navi" /></span>
    			</a>
    		</li>
    	</ul>
    	<ul class="navbar-nav ml-auto">
    		<c:if test="${eoled}">
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  10. cni/pkg/install/server.go

    // limitations under the License.
    
    package install
    
    import (
    	"net/http"
    	"sync/atomic"
    
    	"istio.io/istio/cni/pkg/constants"
    )
    
    // StartServer initializes and starts a web server that exposes liveness and readiness endpoints at port 8000.
    func StartServer() *atomic.Value {
    	router := http.NewServeMux()
    	isReady := initRouter(router)
    
    	go func() {
    Go
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Wed May 17 02:22:22 GMT 2023
    - 1.8K bytes
    - Viewed (0)
Back to top