Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 395 for Implementation (0.19 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/yaml.go

    package printers
    
    import (
    	"fmt"
    	"io"
    	"reflect"
    	"sync/atomic"
    
    	"sigs.k8s.io/yaml"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // YAMLPrinter is an implementation of ResourcePrinter which outputs an object as YAML.
    // The input object is assumed to be in the internal version of an API and is converted
    // to the given version first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 14:15:25 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    )
    
    func init() {
    	install.Install(audit.Scheme)
    }
    
    // retryOnError enforces the webhook client to retry requests
    // on error regardless of its nature.
    // The default implementation considers a very limited set of
    // 'retriable' errors, assuming correct use of HTTP codes by
    // external webhooks.
    // That may easily lead to dropped audit events. In fact, there is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. pkg/credentialprovider/keyring.go

    type DockerKeyring interface {
    	Lookup(image string) ([]AuthConfig, bool)
    }
    
    // BasicDockerKeyring is a trivial map-backed implementation of DockerKeyring
    type BasicDockerKeyring struct {
    	index []string
    	creds map[string][]AuthConfig
    }
    
    // providersDockerKeyring is an implementation of DockerKeyring that
    // materializes its dockercfg based on a set of dockerConfigProviders.
    type providersDockerKeyring struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/scheduling/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/scheduling/v1alpha1/types_swagger_doc_generated.go

    */
    
    package v1alpha1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/events/v1/types_swagger_doc_generated.go

    */
    
    package v1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/apiextensions_client.go

    	if config.UserAgent == "" {
    		config.UserAgent = rest.DefaultKubernetesUserAgent()
    	}
    
    	return nil
    }
    
    // RESTClient returns a RESTClient that is used to communicate
    // with API server by this client implementation.
    func (c *ApiextensionsV1beta1Client) RESTClient() rest.Interface {
    	if c == nil {
    		return nil
    	}
    	return c.restClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    			UserProvidedDecorator:     decorator,
    			InnerCloseNotifierFlusher: innerNotifierFlusher,
    		}
    
    		if innerHijacker, hijackable := inner.(http.Hijacker); hijackable {
    			// for HTTP/1.x request the default implementation of ResponseWriter
    			// also implement CloseNotifier, Flusher and Hijacker
    			return &outerWithCloseNotifyFlushAndHijack{
    				outerWithCloseNotifyAndFlush: outerHTTP2,
    				InnerHijacker:                innerHijacker,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/heap/heap.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Below is the implementation of the a heap. The logic is pretty much the same
    // as cache.heap, however, this heap does not perform synchronization. It leaves
    // synchronization to the SchedulingQueue.
    
    package heap
    
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 29 18:37:35 UTC 2022
    - 6.7K bytes
    - Viewed (0)
Back to top