Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,178 for TTypes (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // ConversionStrategyType describes different conversion types.
    type ConversionStrategyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/types.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    //go:generate mockgen -source=types.go -destination=testing/cadvisor_mock.go -package=testing Interface
    package cadvisor
    
    import (
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    //
    // It assumes that all sample types from the sTypes list are present in the
    // given profile otherwise it returns an error.
    func compatibilizeSampleTypes(p *Profile, sTypes []string) error {
    	if len(sTypes) == 0 {
    		return fmt.Errorf("sample type list is empty")
    	}
    	defaultSampleType := sTypes[0]
    	reMap, needToModify := make([]int, len(sTypes)), false
    	for i, st := range sTypes {
    		if st == p.DefaultSampleType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	Type string
    	// format is an optional OpenAPI type definition for this column. The 'name' format is applied
    	// to the primary identifier column to assist in clients identifying column is the resource name.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Format string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/types.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    //go:generate mockgen -source=types.go -destination=mock_threshold_notifier_test.go -package=eviction NotifierFactory,ThresholdNotifier
    package eviction
    
    import (
    	"context"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/types.go

    	// addressType specifies the type of address carried by this EndpointSlice.
    	// All addresses in this slice must be the same type. This field is
    	// immutable after creation. The following address types are currently
    	// supported:
    	// * IPv4: Represents an IPv4 Address.
    	// * IPv6: Represents an IPv6 Address.
    	// * FQDN: Represents a Fully Qualified Domain Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/ipset/types.go

    	// you can store IP address and protocol-port pairs in it.  TCP, SCTP, UDP, UDPLITE, ICMP and ICMPv6 are supported
    	// with port numbers/ICMP(v6) types and other protocol numbers without port information.
    	HashIPPort Type = "hash:ip,port"
    	// HashIPPortIP represents the `hash:ip,port,ip` type ipset.  The hash:ip,port,ip set type uses a hash to store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. pkg/apis/authentication/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package authentication
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    const (
    	// ImpersonateUserHeader is used to impersonate a particular user during an API server request
    	ImpersonateUserHeader = "Impersonate-User"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. docs/fr/docs/python-types.md

    #### Types génériques
    
    Les types qui peuvent contenir des paramètres de types entre crochets, comme :
    
    * `List`
    * `Tuple`
    * `Set`
    * `Dict`
    * `Optional`
    * ...et d'autres.
    
    sont appelés des **types génériques** ou **Generics**.
    
    ### Classes en tant que types
    
    Vous pouvez aussi déclarer une classe comme type d'une variable.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// This is required if ProxyProtocol is HTTPConnect or GRPC.
    	// +optional
    	Transport *Transport
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    	// Use grpc to connect to konnectivity server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top