Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 173 for trackers (0.22 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/guts.go

    // and x/net/http2. It comes with no API stability promise.
    package httpguts
    
    import (
    	"net/textproto"
    	"strings"
    )
    
    // ValidTrailerHeader reports whether name is a valid header field name to appear
    // in trailers.
    // See RFC 7230, Section 4.1.2
    func ValidTrailerHeader(name string) bool {
    	name = textproto.CanonicalMIMEHeaderKey(name)
    	if strings.HasPrefix(name, "If-") || badTrailer[name] {
    		return false
    	}
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. src/net/http/httptest/recorder.go

    	} else {
    		res.Body = http.NoBody
    	}
    	res.ContentLength = parseContentLength(res.Header.Get("Content-Length"))
    
    	if trailers, ok := rw.snapHeader["Trailer"]; ok {
    		res.Trailer = make(http.Header, len(trailers))
    		for _, k := range trailers {
    			for _, k := range strings.Split(k, ",") {
    				k = http.CanonicalHeaderKey(textproto.TrimString(k))
    				if !httpguts.ValidTrailerHeader(k) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/config/security/security.go

    	attrDestIP           = "destination.ip"         // supports both single ip and cidr, e.g. "10.1.2.3" or "10.1.0.0/16".
    	attrDestPort         = "destination.port"       // must be in the range [0, 65535].
    	attrDestLabel        = "destination.labels"     // label name is surrounded by brackets, e.g. "destination.labels[version]".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/runtime/mklockrank.go

    # Below TRACEGLOBAL manages the global tracing buffer.
    # Note that traceBuf eventually chains to MALLOC, but we never get that far
    # in the situation where there's no P.
    < traceBuf;
    # Starting/stopping tracing traces strings.
    traceBuf < traceStrings;
    
    # Malloc
    allg,
      allocmR,
      allp, # procresize
      execR, # May grow stack
      execW, # May allocate after BeforeFork
      hchan,
      notifyList,
      reflectOffs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/SocketPolicy.kt

      /**
       * Process the response without even attempting to reading the request body. For HTTP/2 this will
       * send [http2ErrorCode] after the response body or trailers. For HTTP/1 this will close the
       * socket after the response body or trailers.
       */
      class DoNotReadRequestBody(
        val http2ErrorCode: Int = 0,
      ) : SocketPolicy
    
      /** Don't trust the client during the SSL handshake. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/net/nss.go

    	for i, crit := range s.criteria {
    		if !crit.standardStatusAction(i == len(s.criteria)-1) {
    			return false
    		}
    	}
    	return true
    }
    
    // nssCriterion is the parsed structure of one of the criteria in brackets
    // after an NSS source name.
    type nssCriterion struct {
    	negate bool   // if "!" was present
    	status string // e.g. "success", "unavail" (lowercase)
    	action string // e.g. "return", "continue" (lowercase)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/README.md

    ## Contributing
    
    This repository uses Gerrit for code changes. To learn how to submit changes to
    this repository, see https://golang.org/doc/contribute.html.
    
    The main issue tracker for the time repository is located at
    https://github.com/golang/go/issues. Prefix your issue with "x/telemetry:" in
    the subject line, so it is easy to find.
    
    ### Linting & Formatting
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/java-android-application/proguard-rules.pro

    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    #   public *;
    #}
    
    # Uncomment this to preserve the line number information for
    # debugging stack traces.
    #-keepattributes SourceFile,LineNumberTable
    
    # If you keep the line number information, uncomment this to
    # hide the original source file name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  9. src/net/http/internal/chunked.go

    // "chunked" format before writing them to w. Closing the returned chunkedWriter
    // sends the final 0-length chunk that marks the end of the stream but does
    // not send the final CRLF that appears after trailers; trailers and the last
    // CRLF must be written separately.
    //
    // NewChunkedWriter is not needed by normal applications. The http
    // package adds chunking automatically if handlers don't set a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    // model the scenario correctly. Make sure we reject such
    // traces.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top