Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 652 for trackers (0.36 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http1/HeadersReader.kt

      fun readLine(): String {
        val line = source.readUtf8LineStrict(headerLimit)
        headerLimit -= line.length.toLong()
        return line
      }
    
      /** Reads headers or trailers. */
      fun readHeaders(): Headers {
        val result = Headers.Builder()
        while (true) {
          val line = readLine()
          if (line.isEmpty()) break
          result.addLenient(line)
        }
        return result.build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

        taskName.startsWith("noDaemon")
    
    fun DistributionTest.addSetUpAndTearDownActions() {
        cachesCleaner = cachesCleanerService
        gradle.rootBuild().sharedServices.registrations.findByName("daemonTracker")?.let {
            tracker = it.service
        }
    }
    
    fun DistributionTest.configureGradleTestEnvironment() {
        val taskName = name
    
        gradleInstallationForTest.apply {
            if (executerRequiresDistribution(taskName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/config/validation/agent/validation.go

    	}
    
    	if tracer := config.GetTracing().GetLightstep(); tracer != nil {
    		if err := ValidateLightstepCollector(tracer); err != nil {
    			errs = multierror.Append(errs, multierror.Prefix(err, "invalid lightstep config:"))
    		}
    	}
    
    	if tracer := config.GetTracing().GetZipkin(); tracer != nil {
    		if err := ValidateZipkinCollector(tracer); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        // Last write is indirectly tracked by any read predecessor we added.
        is_last_write_indirectly_tracked =
            !access_info.reads_since_last_write.empty();
      }
      if (!is_last_write_indirectly_tracked) {
        // Add last write as predecessor since it was not indirectly tracked.
        new_control_predecessors.insert(access_info.last_writes.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top