Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 227 for req_ext (0.23 sec)

  1. hack/local-up-cluster.sh

            kube::util::create_signing_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" client '"client auth"'
        fi
    
        # Create auth proxy client ca
        kube::util::create_signing_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" request-header '"client auth"'
    
        # serving cert for kube-apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ptracePtr(request int, pid int, addr uintptr, data unsafe.Pointer) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    	})
    }
    
    // CertificateRequest represents a PKCS #10, certificate signature request.
    type CertificateRequest struct {
    	Raw                      []byte // Complete ASN.1 DER content (CSR, signature algorithm and signature).
    	RawTBSCertificateRequest []byte // Certificate request info part of raw ASN.1 DER content.
    	RawSubjectPublicKeyInfo  []byte // DER encoded SubjectPublicKeyInfo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    type PodStatusFunc func(podStatus *v1.PodStatus)
    
    // KillPodOptions are options when performing a pod update whose update type is kill.
    type KillPodOptions struct {
    	// CompletedCh is closed when the kill request completes (syncTerminatingPod has completed
    	// without error) or if the pod does not exist, or if the pod has already terminated. This
    	// could take an arbitrary amount of time to be closed, but is never left open once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    //sys	SetupDiCallClassInstaller(installFunction DI_FUNCTION, deviceInfoSet DevInfo, deviceInfoData *DevInfoData) (err error) = setupapi.SetupDiCallClassInstaller
    
    // CallClassInstaller member calls the appropriate class installer, and any registered co-installers, with the specified installation request (DIF code).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

       * implementation; otherwise refreshes will be performed during unrelated cache read and write
       * operations.
       *
       * <p>Currently automatic refreshes are performed when the first stale request for an entry
       * occurs. The request triggering refresh will make a synchronous call to {@link
       * CacheLoader#reload}
       * to obtain a future of the new value. If the returned future is already complete, it is returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    		transportConfig := restclient.AnonymousClientConfig(clientConfig)
    
    		// we set exitAfter to five minutes because we use this client configuration to request new certs - if we are unable
    		// to request new certs, we will be unable to continue normal operation. Exiting the process allows a wrapper
    		// or the bootstrapping credentials to potentially lay down new initial config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

                  },
                  "requestParameters" : {
                    "sourceIPAddress" : "127.0.0.1:38062"
                  },
                  "responseElements" : {
                    "x-amz-request-id" : "14B09A09703FC47B",
                    "x-minio-origin-endpoint" : "http://192.168.86.115:9000"
                  },
                  "s3" : {
                    "s3SchemaVersion" : "1.0",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice_test.go

    	}{
    		{
    			name: "root catch all",
    			root: &networking.HTTPRoute{
    				Match:   nil, // catch all
    				Timeout: &durationpb.Duration{Seconds: 10},
    				Headers: &networking.Headers{
    					Request: &networking.Headers_HeaderOperations{
    						Add: map[string]string{
    							"istio": "test",
    						},
    						Remove: []string{"trace-id"},
    					},
    				},
    				Delegate: &networking.Delegate{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. src/syscall/zerrors_solaris_amd64.go

    	47:  "operation canceled",
    	48:  "operation not supported",
    	49:  "disc quota exceeded",
    	50:  "bad exchange descriptor",
    	51:  "bad request descriptor",
    	52:  "message tables full",
    	53:  "anode table overflow",
    	54:  "bad request code",
    	55:  "invalid slot",
    	56:  "file locking deadlock",
    	57:  "bad font file format",
    	58:  "owner of the lock died",
    	59:  "lock is not recoverable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top