Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,814 for RUNTIME (0.07 sec)

  1. test/gcgort.go

    				runtime.Gosched()
    			}
    			for i := 0; i < mods; i++ {
    				for k, _ := range a {
    					a[k]++
    				}
    				runtime.Gosched()
    			}
    		},
    		mapPointerKeyT: func() {
    			a := make(map[*uint16]uint16)
    			for i := 0; i < length; i++ {
    				a[new(uint16)] = uint16(i)
    				runtime.Gosched()
    			}
    			for i := 0; i < mods; i++ {
    				for k, _ := range a {
    					a[k]++
    					runtime.Gosched()
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    */
    
    package testing
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/json"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type EmbeddedTest struct {
    	runtime.TypeMeta
    	ID          string
    	Object      runtime.Object
    	EmptyObject runtime.Object
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    */
    
    package serializer
    
    import (
    	"mime"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer/json"
    	"k8s.io/apimachinery/pkg/runtime/serializer/protobuf"
    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    	"k8s.io/apimachinery/pkg/runtime/serializer/versioning"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

                implementation-1.0.jar (test:implementation:1.0) {artifactType=jar, org.gradle.status=release}
                runtime-only-1.0.jar (test:runtime-only:1.0) {artifactType=jar, org.gradle.status=release}
            """)
        }
    
        def "provides runtime JAR as default variant with jvm-ecosystem plugin"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/endpointsadapter_test.go

    		expectedResult *corev1.Endpoints
    		expectCreate   []runtime.Object
    		expectUpdate   []runtime.Object
    		initialState   []runtime.Object
    		namespaceParam string
    		endpointsParam *corev1.Endpoints
    	}{
    		"single-endpoint": {
    			expectedError:  nil,
    			expectedResult: endpoints1,
    			expectCreate:   []runtime.Object{endpoints1, epSlice1},
    			initialState:   []runtime.Object{},
    			namespaceParam: endpoints1.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

                implementation-1.0.jar (test:implementation:1.0) ${expectedAttributes}
                runtime-only-1.0.jar (test:runtime-only:1.0) ${expectedAttributes}
            """)
        }
    
        def "provides runtime JAR as default variant with jvm-ecosystem plugin"() {
            buildFile << """
                project(':consumer') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    func (s *RawSerializer) encode(obj runtime.Object, w io.Writer, memAlloc runtime.MemoryAllocator) error {
    	if co, ok := obj.(runtime.CacheableObject); ok {
    		return co.CacheEncode(s.Identifier(), func(obj runtime.Object, w io.Writer) error { return s.doEncode(obj, w, memAlloc) }, w)
    	}
    	return s.doEncode(obj, w, memAlloc)
    }
    
    func (s *RawSerializer) doEncode(obj runtime.Object, w io.Writer, memAlloc runtime.MemoryAllocator) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

                runtime-only-1.0.jar (test:runtime-only:1.0) {artifactType=jar, org.gradle.category=library, org.gradle.libraryelements=jar, org.gradle.status=release, org.gradle.usage=java-runtime}
           """)
    
            where:
            requestJarAttribute << [true, false]
        }
    
        def "provides runtime JAR variant using artifactType"() {
            buildFile << """
                project(':consumer') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    	testCases := []struct {
    		serializer runtime.Serializer
    		convertor  runtime.ObjectConvertor
    		creater    runtime.ObjectCreater
    		typer      runtime.ObjectTyper
    		defaulter  runtime.ObjectDefaulter
    		yaml       bool
    		pretty     bool
    
    		encodes, decodes runtime.GroupVersioner
    
    		defaultGVK *schema.GroupVersionKind
    		into       runtime.Object
    
    		errFn          func(error) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    func EachListItemWithAlloc(obj runtime.Object, fn func(runtime.Object) error) error {
    	return eachListItem(obj, fn, true)
    }
    
    // allocNew: Whether shallow copy is required when the elements in Object.Items are struct
    func eachListItem(obj runtime.Object, fn func(runtime.Object) error, allocNew bool) error {
    	if unstructured, ok := obj.(runtime.Unstructured); ok {
    		if allocNew {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top