Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 185 for Implementation (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeref.go

    */
    
    package unstructured
    
    import (
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    // TypeRef is the implementation of TypeRef for an unstructured object.
    // This is especially usefully when the schema is not known or available.
    type TypeRef struct {
    	celObjectType *types.Type
    	celTypeType   *types.Type
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1alpha1/generated.proto

    // that are required to describe the RuntimeClass to the Container Runtime
    // Interface (CRI) implementation, as well as any other components that need to
    // understand how the pod will be run. The RuntimeClassSpec is immutable.
    message RuntimeClassSpec {
      // runtimeHandler specifies the underlying runtime and configuration that the
      // CRI implementation will use to handle pods of this class. The possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    	if r := recover(); r != nil {
    		handleCrash(ctx, r, additionalHandlers...)
    	}
    }
    
    // handleCrash is the common implementation of HandleCrash and HandleCrash.
    // Having those call a common implementation ensures that the stack depth
    // is the same regardless through which path the handlers get invoked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_windows.go

    func (hu *HostUtil) PathIsDevice(pathname string) (bool, error) {
    	return false, nil
    }
    
    // MakeRShared checks that given path is on a mount with 'rshared' mount
    // propagation. Empty implementation here.
    func (hu *HostUtil) MakeRShared(path string) error {
    	return nil
    }
    
    func isSystemCannotAccessErr(err error) bool {
    	if fserr, ok := err.(*fs.PathError); ok {
    		errno, ok := fserr.Err.(syscall.Errno)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    type DummyImpl struct{}
    
    func NewDummyImpl() *DummyImpl {
    	return &DummyImpl{}
    }
    
    // ValidatePlugin is a dummy implementation
    func (d *DummyImpl) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    	return nil
    }
    
    // RegisterPlugin is a dummy implementation
    func (d *DummyImpl) RegisterPlugin(pluginName string, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pkg/volume/util/selinux.go

    	// or don't support SELinux at all.
    	SELinuxOptionsToFileLabel(opts *v1.SELinuxOptions) (string, error)
    
    	// SELinuxEnabled returns true when the OS has enabled SELinux support.
    	SELinuxEnabled() bool
    }
    
    // Real implementation of the interface.
    // On Linux with SELinux enabled it translates. Otherwise it always returns an empty string and no error.
    type translator struct{}
    
    var _ SELinuxLabelTranslator = &translator{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 14:40:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/cache_based_manager.go

    		}
    	}
    	return data.object, data.err
    }
    
    // cacheBasedManager keeps a store with objects necessary
    // for registered pods. Different implementations of the store
    // may result in different semantics for freshness of objects
    // (e.g. ttl-based implementation vs watch-based implementation).
    type cacheBasedManager struct {
    	objectStore          Store
    	getReferencedObjects func(*v1.Pod) sets.Set[string]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	storagetesting.RunWatchSemanticInitialEventsExtended(ctx, t, store)
    }
    
    // =======================================================================
    // Implementation-specific tests are following.
    // The following tests are exercising the details of the implementation
    // not the actual user-facing contract of storage interface.
    // As such, they may focus e.g. on non-functional aspects like performance
    // impact.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		TimeTag: cbor.DecTagOptional,
    
    		// Observed depth up to 16 in fuzzed batch/v1 CronJobList. JSON implementation limit
    		// is 10000.
    		MaxNestedLevels: 64,
    
    		MaxArrayElements: 1024,
    		MaxMapPairs:      1024,
    
    		// Indefinite-length sequences aren't produced by this serializer, but other
    		// implementations can.
    		IndefLength: cbor.IndefLengthAllowed,
    
    		// Accept inputs that contain CBOR tags.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package runtime provides the kubeadm container runtime implementation.
    package runtime
    
    import (
    	"context"
    	"encoding/json"
    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	criapi "k8s.io/cri-api/pkg/apis"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top