Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 237 for RUNTIME (0.17 sec)

  1. pkg/controller/history/controller_history_test.go

    				}
    				b, err := strategicpatch.StrategicMergePatch(
    					[]byte(runtime.EncodeOrDie(clientscheme.Codecs.LegacyCodec(apps.SchemeGroupVersion), test.revision)),
    					action.GetPatch(), test.revision)
    				if err != nil {
    					return true, nil, err
    				}
    				obj, err := runtime.Decode(clientscheme.Codecs.LegacyCodec(apps.SchemeGroupVersion), b)
    				if err != nil {
    					return true, nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	apidiscoveryv2 "k8s.io/api/apidiscovery/v2"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/managedfields"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/endpoints/deprecation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    const (
    	ControllerRevisionHashLabelKey = "controller-revision-hash"
    	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	case status.IsTerminated():
    		// A terminated pod may still be waiting for cleanup - if we receive a runtime pod kill request
    		// due to housekeeping seeing an older cached version of the runtime pod simply ignore it until
    		// after the pod worker completes.
    		if isRuntimePod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// List of objects
    	Items []runtime.RawExtension `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // APIVersions lists the versions that are available, to allow clients to
    // discover the API at /api, which is the root path of the legacy v1 API.
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type APIVersions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        variant('platform-runtime', [
                            'org.gradle.status': 'release',
                            'org.gradle.usage': 'java-runtime',
                            'org.gradle.category': 'platform'])
                        noArtifacts()
                    }
                    module('org.gradle.test:lib.subgroup:1.1') {
                        variant('platform-runtime', [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	// intended to be called by debuggers.
    	MOVQ	$runtime·debugPinnerV1<ABIInternal>(SB), AX
    	MOVQ	$runtime·debugCallV2<ABIInternal>(SB), AX
    	RET
    
    // mainPC is a function value for runtime.main, to be passed to newproc.
    // The reference to runtime.main is made via ABIInternal, since the
    // actual function (not the ABI0 wrapper) is needed by newproc.
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
    	// If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced
    	// as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    // in these scenarios returning memory to the OS is more important than keeping CPU
    // overheads low.
    
    package runtime
    
    import (
    	"internal/goos"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	// The background scavenger is paced according to these parameters.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    	if len(contentType) == 0 {
    		return
    	}
    	cfg.ContentType = contentType
    	switch contentType {
    	case runtime.ContentTypeProtobuf:
    		cfg.AcceptContentTypes = strings.Join([]string{runtime.ContentTypeProtobuf, runtime.ContentTypeJSON}, ",")
    	default:
    		// otherwise let the rest client perform defaulting
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top