Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,679 for Replies (0.15 sec)

  1. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

            1 * serverHandler.dispatch("[message 1]") >> { replies.countDown() }
            1 * serverHandler.dispatch("[message 2]") >> { replies.countDown() }
            1 * serverHandler.dispatch("[message 3]") >> { replies.countDown() }
            1 * serverHandler.dispatch("[message 4]") >> { replies.countDown() }
            1 * serverHandler.dispatch("[message 5]") >> { replies.countDown() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. .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)
  3. 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)
  4. docs/metrics/healthcheck/README.md

    Date: Tue, 21 Jul 2020 00:36:14 GMT
    ```
    
    ### Checking cluster health for maintenance
    
    You may query the cluster probe endpoint to check if the node which received the request can be taken down for maintenance, if the server replies back '412 Precondition Failed' this means you will lose HA. '200 OK' means you are okay to proceed.
    
    ```
    curl http://minio1:9001/minio/health/cluster?maintenance=true
    HTTP/1.1 412 Precondition Failed
    Accept-Ranges: bytes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top