Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,527 for RUNTIME (0.26 sec)

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

    // the individual items. This function assumes it never gets a v1.List.
    func (c *crConverter) ConvertToVersion(in runtime.Object, target runtime.GroupVersioner) (runtime.Object, error) {
    	fromGVK := in.GetObjectKind().GroupVersionKind()
    	toGVK, ok := target.KindForGroupVersionKinds([]schema.GroupVersionKind{fromGVK})
    	if !ok {
    		// TODO: should this be a typed error?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/informer.go

    limitations under the License.
    */
    
    package generic
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/tools/cache"
    )
    
    var _ Informer[runtime.Object] = informer[runtime.Object]{}
    
    type informer[T runtime.Object] struct {
    	cache.SharedIndexInformer
    	lister[T]
    }
    
    // Creates a generic informer around a type-erased cache.SharedIndexInformer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pkg/registry/resource/podschedulingcontext/strategy.go

    }
    
    func (podSchedulingStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (podSchedulingStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (podSchedulingStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (podSchedulingStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newScheduling := obj.(*resource.PodSchedulingContext)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Short {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Tint {
        String value()
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Ignored {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cadvisor/helpers_linux.go

    	"strings"
    
    	cadvisorfs "github.com/google/cadvisor/fs"
    )
    
    // imageFsInfoProvider knows how to translate the configured runtime
    // to its file system label for images.
    type imageFsInfoProvider struct {
    	runtimeEndpoint string
    }
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

    import org.junit.Assume
    import org.spockframework.runtime.extension.ExtensionAnnotation
    import org.spockframework.runtime.extension.IAnnotationDrivenExtension
    import org.spockframework.runtime.extension.IMethodInterceptor
    import org.spockframework.runtime.extension.IMethodInvocation
    import org.spockframework.runtime.model.FeatureInfo
    import org.spockframework.runtime.model.SpecInfo
    
    import java.lang.annotation.ElementType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package output
    
    import (
    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AvailableUpgrade) DeepCopyInto(out *AvailableUpgrade) {
    	*out = *in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pcln.go

    	//    runtime.pclntab
    	//      Carrier symbol for the entire pclntab section.
    	//
    	//      runtime.pcheader  (see: runtime/symtab.go:pcHeader)
    	//        8-byte magic
    	//        nfunc [thearch.ptrsize bytes]
    	//        offset to runtime.funcnametab from the beginning of runtime.pcheader
    	//        offset to runtime.pclntab_old from beginning of runtime.pcheader
    	//
    	//      runtime.funcnametab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/cmd/objdump/objdump_test.go

    }
    
    func mustHaveDisasm(t *testing.T) {
    	switch runtime.GOARCH {
    	case "loong64":
    		t.Skipf("skipping on %s", runtime.GOARCH)
    	case "mips", "mipsle", "mips64", "mips64le":
    		t.Skipf("skipping on %s, issue 12559", runtime.GOARCH)
    	case "riscv64":
    		t.Skipf("skipping on %s, issue 36738", runtime.GOARCH)
    	case "s390x":
    		t.Skipf("skipping on %s, issue 15255", runtime.GOARCH)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/output/scheme/scheme.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/output"
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/output/v1alpha3"
    )
    
    // Scheme is the runtime.Scheme to which all kubeadm api types are registered.
    var Scheme = runtime.NewScheme()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top