Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for reqAdd (0.18 sec)

  1. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	if !ok {
    		return nil, fmt.Errorf("private key does not implement crypto.Signer")
    	}
    
    	name, err := digestedName(signer.Public(), subject, usages)
    	if err != nil {
    		return nil, err
    	}
    
    	reqName, reqUID, err := csr.RequestCertificate(client, csrData, name, certificatesv1.KubeAPIServerClientKubeletSignerName, nil, usages, privateKey)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	// times relative to the object name.
    	skipParent := dstVolumeDir
    	if len(dstBuf) > 0 {
    		skipParent = pathutil.Dir(dstFilePath)
    	}
    
    	var reqVID string
    	if fi.VersionID == "" {
    		reqVID = nullVersionID
    	} else {
    		reqVID = fi.VersionID
    	}
    
    	// Empty fi.VersionID indicates that versioning is either
    	// suspended or disabled on this bucket. RenameData will replace
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix.go

    	l := len(tcpReq) - 2
    	tcpReq[0] = byte(l >> 8)
    	tcpReq[1] = byte(l)
    	return id, udpReq, tcpReq, nil
    }
    
    func checkResponse(reqID uint16, reqQues dnsmessage.Question, respHdr dnsmessage.Header, respQues dnsmessage.Question) bool {
    	if !respHdr.Response {
    		return false
    	}
    	if reqID != respHdr.ID {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. cmd/utils.go

    func newContext(r *http.Request, w http.ResponseWriter, api string) context.Context {
    	reqID := w.Header().Get(xhttp.AmzRequestID)
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    	object := likelyUnescapeGeneric(vars["object"], url.PathUnescape)
    	reqInfo := &logger.ReqInfo{
    		DeploymentID: globalDeploymentID(),
    		RequestID:    reqID,
    		RemoteHost:   handlers.GetSourceIP(r),
    		Host:         getHostName(r),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	doReq := func(reqId string) {
    		req, _ := NewRequest("GET", ts.URL, nil)
    		trace := &httptrace.ClientTrace{
    			GetConn: func(hostPort string) {
    				preDial <- struct{}{}
    			},
    		}
    		req = req.WithContext(httptrace.WithClientTrace(req.Context(), trace))
    		resp, err := tr.RoundTrip(req)
    		if err != nil {
    			t.Errorf("unexpected error for request %s: %v", reqId, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Populates data struct with one volume/node entry.
    // Calls SetVolumesMountedByNode twice, first setting mounted to true then false.
    // Calls AddVolumeNode to readd the same volume/node.
    // Verifies mountedByNode is false and detachRequestedTime is zero.
    func Test_SetVolumesMountedByNode_Positive_UnsetWithInitialSetAddVolumeNodeNotReset(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.11.md

    * kube-apiserver: OIDC authentication now supports requiring specific claims with `--oidc-required-claim=<claim>=<value>` Previously, there was no mechanism for a user to specify claims in the OIDC authentication process that were requid to be present in the ID Token with an expected value. This version now makes it possible to require claims support for the OIDC authentication. It allows users to pass in a `--oidc-required-claims` flag, and `key=value` pairs in the API config, which...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top