Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,814 for RUNTIME (0.2 sec)

  1. staging/src/k8s.io/api/storage/v1/zz_generated.deepcopy.go

    limitations under the License.
    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package v1
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	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 *CSIDriver) DeepCopyInto(out *CSIDriver) {
    	*out = *in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.conversion.go

    	labels "k8s.io/apimachinery/pkg/labels"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	intstr "k8s.io/apimachinery/pkg/util/intstr"
    	watch "k8s.io/apimachinery/pkg/watch"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    import (
    	"bytes"
    	"fmt"
    	"io"
    	"reflect"
    	"runtime/debug"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    )
    
    var _ runtime.CacheableObject = &cachingObject{}
    
    // metaRuntimeInterface implements runtime.Object and
    // metav1.Object interfaces.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/runtime/HACKING.md

    </table>
    
    Atomics
    =======
    
    The runtime uses its own atomics package at `internal/runtime/atomic`.
    This corresponds to `sync/atomic`, but functions have different names
    for historical reasons and there are a few additional functions needed
    by the runtime.
    
    In general, we think hard about the uses of atomics in the runtime and
    try to avoid unnecessary atomic operations. If access to a variable is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/runtime/map_test.go

    				m[i] = i
    			}
    			// trigger a gc
    			runtime.GC()
    			growflag = false
    		}
    	}
    	if bitmask != 1<<16-1 {
    		t.Error("missing key", bitmask)
    	}
    }
    
    func testConcurrentReadsAfterGrowth(t *testing.T, useReflect bool) {
    	t.Parallel()
    	if runtime.GOMAXPROCS(-1) == 1 {
    		defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(16))
    	}
    	numLoop := 10
    	numGrowStep := 250
    	numReader := 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/testing/conversion.go

    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func convertEmbeddedTestToEmbeddedTestExternal(in *EmbeddedTest, out *EmbeddedTestExternal, s conversion.Scope) error {
    	out.TypeMeta = in.TypeMeta
    	out.ID = in.ID
    	if err := runtime.Convert_runtime_Object_To_runtime_RawExtension(&in.Object, &out.Object, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 06 16:07:10 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    		Do(context.TODO()).
    		Get()
    }
    
    func (m *Helper) Create(namespace string, modify bool, obj runtime.Object) (runtime.Object, error) {
    	return m.CreateWithOptions(namespace, modify, obj, nil)
    }
    
    func (m *Helper) CreateWithOptions(namespace string, modify bool, obj runtime.Object, options *metav1.CreateOptions) (runtime.Object, error) {
    	if options == nil {
    		options = &metav1.CreateOptions{}
    	}
    	if m.ServerDryRun {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    type UpdateFunc func(input runtime.Object, res ResponseMeta) (output runtime.Object, ttl *uint64, err error)
    
    // ValidateObjectFunc is a function to act on a given object. An error may be returned
    // if the hook cannot be completed. The function may NOT transform the provided
    // object.
    type ValidateObjectFunc func(ctx context.Context, obj runtime.Object) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/runtime/crash_test.go

    	}
    }
    
    func TestBreakpoint(t *testing.T) {
    	output := runTestProg(t, "testprog", "Breakpoint")
    	// If runtime.Breakpoint() is inlined, then the stack trace prints
    	// "runtime.Breakpoint(...)" instead of "runtime.Breakpoint()".
    	want := "runtime.Breakpoint("
    	if !strings.Contains(output, want) {
    		t.Fatalf("output:\n%s\n\nwant output containing: %s", output, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. pkg/apis/storage/zz_generated.deepcopy.go

    limitations under the License.
    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package storage
    
    import (
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	core "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top