Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 714 for Replies (0.16 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. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	// it returns 503 if not all registered signals have been ready (closed) otherwise it simply replies with 404.
    	// the apiextentionserver is considered to be initialized once hasCRDInformerSyncedSignal is closed.
    	//
    	// here, in this test the delegate represent the special handler and hasSync represents the signal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

     *  Fix: Don't resolve DNS addresses when connecting through a SOCKS proxy.
     *  Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header.
     *  Fix: Support 204 and 205 'No Content' replies in the logging interceptor.
     *  New: Add `Call.isExecuted()`.
    
    
    ## Version 2.6.0
    
    _2015-11-22_
    
     *  **New Logging Interceptor.** The `logging-interceptor` subproject offers
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      optional string level = 1;
    
      // The users (by authenticated user name) this rule applies to.
      // An empty list implies every user.
      // +optional
      // +listType=atomic
      repeated string users = 2;
    
      // The user groups this rule applies to. A user is considered matching
      // if it is a member of any of the UserGroups.
      // An empty list implies every user group.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// An empty list implies every user.
    	// +optional
    	Users []string
    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	UserGroups []string
    
    	// The verbs that match this rule.
    	// An empty list implies every verb.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// The users (by authenticated user name) this rule applies to.
    	// An empty list implies every user.
    	// +optional
    	// +listType=atomic
    	Users []string `json:"users,omitempty" protobuf:"bytes,2,rep,name=users"`
    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top