Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for spent (0.07 sec)

  1. pkg/apis/admissionregistration/types.go

    )
    
    // MatchPolicyType specifies the type of match policy
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    )
    
    // MatchPolicyType specifies the type of match policy
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    )
    
    // MatchPolicyType specifies the type of match policy.
    // +enum
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule.
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/net/http/request.go

    }
    
    // UserAgent returns the client's User-Agent, if sent in the request.
    func (r *Request) UserAgent() string {
    	return r.Header.Get("User-Agent")
    }
    
    // Cookies parses and returns the HTTP cookies sent with the request.
    func (r *Request) Cookies() []*Cookie {
    	return readCookies(r.Header, "")
    }
    
    // CookiesNamed parses and returns the named HTTP cookies sent with the request
    // or an empty slice if none matched.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    	// the client. It's available both on the server and on the client side.
    	ServerName string
    
    	// PeerCertificates are the parsed certificates sent by the peer, in the
    	// order in which they were sent. The first element is the leaf certificate
    	// that the connection is verified against.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// removing duplicate `/`s, and resolving `..` and `.`.
      ///
      /// Plugins must not return `nullptr`. Returning empty strings is allowed.
      ///
      /// The allocation and freeing of memory must happen via the functions sent to
      /// core TensorFlow upon registration (see the `TF_FilesystemPluginInfo`
      /// structure in Section 4).
      ///
      /// This function will be called by core TensorFlow to clean up all path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	hand      bytes.Buffer // handshake data waiting to be read
    	buffering bool         // whether records are buffered in sendBuf
    	sendBuf   []byte       // a buffer of records waiting to be sent
    
    	// bytesSent counts the bytes of application data sent.
    	// packetsSent counts packets.
    	bytesSent   int64
    	packetsSent int64
    
    	// retryCount counts the number of consecutive non-advancing records
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    			}
    			if vol.VolumeHandle != csiMounter.volumeID {
    				t.Error("volumeHandle not sent to CSI driver properly")
    			}
    
    			devicePath, err := makeDeviceMountPath(plug, csiMounter.spec)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if vol.DeviceMountPath != devicePath {
    				t.Errorf("DeviceMountPath not sent properly to CSI driver: %s, %s", vol.DeviceMountPath, devicePath)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top