Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for trackers (0.27 sec)

  1. src/net/http/example_test.go

    	})
    }
    
    // HTTP Trailers are a set of key/value pairs like headers that come
    // after the HTTP response, instead of before.
    func ExampleResponseWriter_trailers() {
    	mux := http.NewServeMux()
    	mux.HandleFunc("/sendstrailers", func(w http.ResponseWriter, req *http.Request) {
    		// Before any call to WriteHeader or Write, declare
    		// the trailers you will set during the HTTP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/CONTRIBUTING.md

    3.  What did you do?
    4.  What did you expect to see?
    5.  What did you see instead?
    
    General questions should go to the
    [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead
    of the issue tracker. The gophers there will answer or ask you to file an issue
    if you've tripped over a bug.
    
    ## Contributing code
    
    Please read the
    [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending
    patches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 913 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/term/README.md

    ## Report Issues / Send Patches
    
    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 term repository is located at
    https://github.com/golang/go/issues. Prefix your issue with "x/term:" in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 727 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    	etcdOptionsCopy := etcdOptions
    	etcdOptionsCopy.StorageConfig.Codec = unstructured.UnstructuredJSONScheme
    	etcdOptionsCopy.StorageConfig.StorageObjectCountTracker = tracker
    	etcdOptionsCopy.WatchCacheSizes = nil // this control is not provided for custom resources
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/proxy/util/endpoints.go

    import (
    	"net"
    
    	"k8s.io/klog/v2"
    	netutils "k8s.io/utils/net"
    )
    
    // IPPart returns just the IP part of an IP or IP:port or endpoint string. If the IP
    // part is an IPv6 address enclosed in brackets (e.g. "[fd00:1::5]:9999"),
    // then the brackets are stripped as well.
    func IPPart(s string) string {
    	if ip := netutils.ParseIPSloppy(s); ip != nil {
    		// IP address without port
    		return s
    	}
    	// Must be IP:port
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    			}
    		}
    
    		for _, name := range librariesInVersions(t, vop) {
    			versionTracking, ok := tracked[name]
    			if !ok {
    				versionTracking = &versionTracker{}
    				tracked[name] = versionTracking
    			}
    			if versionTracking.added != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/errorcalls_test.go

    	errorfMinArgCount = 4
    	errorfFormatIndex = 2
    )
    
    // TestErrorCalls makes sure that check.errorf calls have at least
    // errorfMinArgCount arguments (otherwise we should use check.error)
    // and use balanced parentheses/brackets.
    func TestErrorCalls(t *testing.T) {
    	files, err := pkgFiles(".")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, file := range files {
    		syntax.Inspect(file, func(n syntax.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/term/CONTRIBUTING.md

    3.  What did you do?
    4.  What did you expect to see?
    5.  What did you see instead?
    
    General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) instead of the issue tracker.
    The gophers there will answer or ask you to file an issue if you've tripped over a bug.
    
    ## Contributing code
    
    Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
    before sending patches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 913 bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileAccessTracker.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    /**
     * Tracks access to files.
     */
    public interface FileAccessTracker {
        /**
         * Marks the supplied file as accessed.
         *
         * If the supplied file is unknown to this tracker, implementations must
         * simply ignore it instead of throwing an exception. However, depending
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HeadersRequestTest.kt

        val request =
          Request.Builder()
            .url("http://square.com/")
            .header("TE", "trailers")
            .build()
        val expected =
          headerEntries(
            ":method",
            "GET",
            ":path",
            "/",
            ":scheme",
            "http",
            "te",
            "trailers",
          )
        assertThat(http2HeadersList(request)).isEqualTo(expected)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top