Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for ktypes (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	resource := requestInfo.Resource
    	subresource := requestInfo.Subresource
    	scope := metrics.CleanScope(requestInfo)
    	supportedTypes := []string{
    		string(types.JSONPatchType),
    		string(types.MergePatchType),
    		string(types.ApplyPatchType),
    	}
    
    	var handlerFunc http.HandlerFunc
    	subresources, err := apiextensionshelpers.GetSubresourcesForVersion(crd, requestInfo.APIVersion)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    
    [[native_binaries:build_type]]
    === Build types
    
    A `build type` determines various non-functional aspects of a binary, such as whether debug information is included, or what optimisation level the binary is compiled with. Typical build types are 'debug' and 'release', but a project is free to define any set of build types.
    
    === Example: Defining build types
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

     * Plugins applied via <<sec:kotlin_cross_project_configuration,cross-project configuration>>
    
    You also can not use type-safe accessors in Binary Gradle plugins implemented in Kotlin.
    
    If you can't find a type-safe accessor, _fall back to using the normal API_ for the corresponding types.
    To do that, you need to know the names and/or types of the configured model elements.
    We'll now show you how those can be discovered by looking at the above script in detail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	remote "k8s.io/cri-client/pkg"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message WatchEvent {
      optional string type = 1;
    
      // Object is:
      //  * If Type is Added or Modified: the new state of the object.
      //  * If Type is Deleted: the state of the object immediately before deletion.
      //  * If Type is Error: *Status is recommended; other types may make sense
      //    depending on context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message WatchEvent {
      optional string type = 1;
    
      // Object is:
      //  * If Type is Added or Modified: the new state of the object.
      //  * If Type is Deleted: the state of the object immediately before deletion.
      //  * If Type is Error: *Status is recommended; other types may make sense
      //    depending on context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	// ("sc"). We use a type-insensitive lookup for the slot table,
    	// since the type we get from the ABI analyzer won't always match
    	// what the compiler uses when creating OpArg{Int,Float}Reg ops.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpArgIntReg || v.Op == OpArgFloatReg {
    			aux := v.Aux.(*AuxNameOffset)
    			sl := LocalSlot{N: aux.Name, Type: v.Type, Off: aux.Offset}
    			// install slot in lookup table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    are inherited from all parent types including implemented interfaces. Property type annotations override any other property type annotation declared in a parent type. This way an `@InputFile` property can be turned into an `@InputDirectory` property in a child task type.
    
    Annotations on a property declared in a type override similar annotations declared by the superclass and in any implemented interfaces. Superclass annotations take precedence over annotations declared in implemented interfaces....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					},
    					"o": {
    						Generic: schema.Generic{Type: "object"},
    						Properties: map[string]schema.Structural{
    							"i": {Generic: schema.Generic{Type: "integer"}},
    							"b": {Generic: schema.Generic{Type: "boolean"}},
    							"s": {Generic: schema.Generic{Type: "string"}},
    							"a": {
    								Generic: schema.Generic{Type: "array"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    	}
    }
    
    // isNonNegative reports whether v is known to be greater or equal to zero.
    func isNonNegative(v *Value) bool {
    	if !v.Type.IsInteger() {
    		v.Fatalf("isNonNegative bad type: %v", v.Type)
    	}
    	// TODO: return true if !v.Type.IsSigned()
    	// SSA isn't type-safe enough to do that now (issue 37753).
    	// The checks below depend only on the pattern of bits.
    
    	switch v.Op {
    	case OpConst64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top