Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 805 for Replies (0.17 sec)

  1. .github/actions/people/app/main.py

    
    # Discussions
    
    
    class CommentsNode(BaseModel):
        createdAt: datetime
        author: Union[Author, None] = None
    
    
    class Replies(BaseModel):
        nodes: List[CommentsNode]
    
    
    class DiscussionsCommentsNode(CommentsNode):
        replies: Replies
    
    
    class Comments(BaseModel):
        nodes: List[CommentsNode]
    
    
    class DiscussionsComments(BaseModel):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/etag.go

    // This file exposes helper functions used for calculating the E-Tag header
    // used in discovery endpoint responses
    
    // Attaches Cache-Busting functionality to an endpoint
    //   - Sets ETag header to provided hash
    //   - Replies with 304 Not Modified, if If-None-Match header matches hash
    //
    // hash should be the value of calculateETag on object. If hash is empty, then
    // the object is simply serialized without E-Tag functionality
    func ServeHTTPWithETag(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/README.md

      - Using DNAT to rewrite traffic from service IPs (cluster IPs, external IPs, load balancer
        IP, and NodePorts on node IPs) to the corresponding endpoint IPs.
    
      - Using SNAT to masquerade traffic as needed to ensure that replies to it will come back
        to this node/namespace (so that they can be un-DNAT-ed).
    
      - Dropping packets that are filtered out by the `LoadBalancerSourceRanges` feature.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. cmd/notification.go

    				info.Disks = getOfflineDisks(client.host.String(), globalEndpoints)
    			}
    			replies[idx] = info
    		}(client, i)
    	}
    	wg.Wait()
    
    	// Add local to this server.
    	replies = append(replies, objLayer.LocalStorageInfo(ctx, metrics))
    
    	storageInfo.Backend = objLayer.BackendInfo()
    	for _, sinfo := range replies {
    		storageInfo.Disks = append(storageInfo.Disks, sinfo.Disks...)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. src/net/http/httptrace/trace.go

    	PutIdleConn func(err error)
    
    	// GotFirstResponseByte is called when the first byte of the response
    	// headers is available.
    	GotFirstResponseByte func()
    
    	// Got100Continue is called if the server replies with a "100
    	// Continue" response.
    	Got100Continue func()
    
    	// Got1xxResponse is called for each 1xx informational response header
    	// returned before the final non-1xx response. Got1xxResponse is called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/net/http/fs.go

    func serveError(w ResponseWriter, text string, code int) {
    	h := w.Header()
    	h.Del("Etag")
    	h.Del("Last-Modified")
    	h.Del("Cache-Control")
    	Error(w, text, code)
    }
    
    // ServeContent replies to the request using the content in the
    // provided ReadSeeker. The main benefit of ServeContent over [io.Copy]
    // is that it handles Range requests properly, sets the MIME type, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. cmd/auth-handler_test.go

    	if err := signRequestV4(req, cred.AccessKey, cred.SecretKey); err != nil {
    		t.Fatalf("Unable to initialized new signed http request %s", err)
    	}
    	return req
    }
    
    // Tests is requested authenticated function, tests replies for s3 errors.
    func TestIsReqAuthenticated(t *testing.T) {
    	ctx, cancel := context.WithCancel(GlobalContext)
    	defer cancel()
    
    	objLayer, fsDir, err := prepareFS(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	w.WriteHeader(code)
    	fmt.Fprintln(w, error)
    }
    
    // NotFound replies to the request with an HTTP 404 not found error.
    func NotFound(w ResponseWriter, r *Request) { Error(w, "404 page not found", StatusNotFound) }
    
    // NotFoundHandler returns a simple request handler
    // that replies to each request with a “404 page not found” reply.
    func NotFoundHandler() Handler { return HandlerFunc(NotFound) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/net/http/client.go

    // non-nil error only occurs when CheckRedirect fails, and even then
    // the returned [Response.Body] is already closed.
    //
    // Generally [Get], [Post], or [PostForm] will be used instead of Do.
    //
    // If the server replies with a redirect, the Client first uses the
    // CheckRedirect function to determine whether the redirect should be
    // followed. If permitted, a 301, 302, or 303 redirect causes
    // subsequent requests to use HTTP method GET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    			body, rgz)
    	}
    	if g, e := res.Header.Get("Content-Encoding"), ""; g != e {
    		t.Fatalf("Content-Encoding = %q; want %q", g, e)
    	}
    }
    
    // golang.org/issue/7750: request fails when server replies with
    // a short gzip body
    func TestTransportGzipShort(t *testing.T) { run(t, testTransportGzipShort) }
    func testTransportGzipShort(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top