Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 395 for Implementation (0.18 sec)

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

    	"github.com/google/cel-go/common/types/ref"
    
    	"k8s.io/apiserver/pkg/cel/mutation/common"
    )
    
    // mockTypeResolver is a mock implementation of TypeResolver that
    // allows the object to contain any field.
    type mockTypeResolver struct {
    }
    
    // mockTypeRef is a mock implementation of TypeRef that
    // contains any field.
    type mockTypeRef struct {
    	objectType *types.Type
    	resolver   common.TypeResolver
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    	"k8s.io/apiserver/pkg/util/flowcontrol/counter"
    	promiseifc "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise"
    )
    
    // countingPromise implements the WriteOnce interface.
    // This implementation is based on a condition variable.
    // This implementation tracks active goroutines:
    // the given counter is decremented for a goroutine waiting for this
    // varible to be set and incremented when such a goroutine is
    // unblocked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/README.md

    Implements: https://github.com/kubernetes/design-proposals-archive/blob/main/api-machinery/thirdpartyresources.md
    
    It provides an API for registering `CustomResourceDefinitions`.
    
    ## Purpose
    
    This API server provides the implementation for `CustomResourceDefinitions` which is included as
    delegate server inside of `kube-apiserver`.
    
    
    ## Compatibility
    
    HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 06:41:15 UTC 2023
    - 742 bytes
    - Viewed (0)
  4. pkg/util/coverage/fake_test_deps.go

    limitations under the License.
    */
    
    package coverage
    
    import (
    	"io"
    	"reflect"
    	"time"
    )
    
    // This is an implementation of testing.testDeps. It doesn't need to do anything, because
    // no tests are actually run. It does need a concrete implementation of at least ImportPath,
    // which is called unconditionally when running tests.
    //
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer.go

    	return &cachingAuthorizer{
    		authorizer: in,
    		decisions:  make(map[string]authzResult),
    	}
    }
    
    // The attribute accessors known to cache key construction. If this fails to compile, the cache
    // implementation may need to be updated.
    var _ authorizer.Attributes = (interface {
    	GetUser() user.Info
    	GetVerb() string
    	IsReadOnly() bool
    	GetNamespace() string
    	GetResource() string
    	GetSubresource() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/registry/storage/volumeattributesclass/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package volumeattributesclass provides Registry interface and its REST
    // implementation for storing volumeattributesclass api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 740 bytes
    - Viewed (0)
  7. pkg/controller/cronjob/injection.go

    	// GetCronJob retrieves a CronJob.
    	GetCronJob(ctx context.Context, namespace, name string) (*batchv1.CronJob, error)
    }
    
    // realCJControl is the default implementation of cjControlInterface.
    type realCJControl struct {
    	KubeClient clientset.Interface
    }
    
    func (c *realCJControl) GetCronJob(ctx context.Context, namespace, name string) (*batchv1.CronJob, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/kubelet/secret/secret_manager.go

    func (s *simpleSecretManager) UnregisterPod(pod *v1.Pod) {
    }
    
    // secretManager keeps a store with secrets necessary
    // for registered pods. Different implementations of the store
    // may result in different semantics for freshness of secrets
    // (e.g. ttl-based implementation vs watch-based implementation).
    type secretManager struct {
    	manager manager.Manager
    }
    
    func (s *secretManager) GetSecret(namespace, name string) (*v1.Secret, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    				logDryRunAction(action, opts.Writer, opts.MarshalFunc)
    
    				return false, nil, nil
    			},
    		},
    		// Let the DryRunGetter implementation take care of all GET requests.
    		// The DryRunGetter implementation may call a real API Server behind the scenes or just fake everything
    		&core.SimpleReactor{
    			Verb:     "get",
    			Resource: "*",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/output/output.go

    	KubeTemplatePrintFlags *genericclioptions.KubeTemplatePrintFlags
    	// TextPrintFlags provides default flags necessary for kubeadm text printing.
    	TextPrintFlags TextPrintFlags
    	// TypeSetterPrinter is an implementation of ResourcePrinter that wraps another printer with types set on the objects
    	TypeSetterPrinter *printers.TypeSetterPrinter
    	// OutputFormat contains currently set output format
    	OutputFormat *string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top