Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,794 for baseIdx (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/webhook/metrics.go

    		Help: "Counts the number of requests to servers missing SAN extension " +
    			"in their serving certificate OR the number of connection failures " +
    			"due to the lack of x509 certificate SAN extension missing " +
    			"(either/or, based on the runtime environment)",
    		StabilityLevel: metrics.ALPHA,
    	},
    )
    
    var x509InsecureSHA1Counter = metrics.NewCounter(
    	&metrics.CounterOpts{
    		Subsystem: "webhooks",
    		Namespace: "apiserver",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 14:39:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/extender.go

    // decisions made by Kubernetes. This is typically needed for resources not directly
    // managed by Kubernetes.
    type Extender interface {
    	// Name returns a unique name that identifies the extender.
    	Name() string
    
    	// Filter based on extender-implemented predicate functions. The filtered list is
    	// expected to be a subset of the supplied list.
    	// The failedNodes and failedAndUnresolvableNodes optionally contains the list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

    * Based on Python type hints.
    * Validation and documentation from these types.
    * Dependency Injection system.
    
    It doesn't use a data validation, serialization and documentation third-party library like Pydantic, it has its own. So, these data type definitions would not be reusable as easily.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/securitycontext/fake.go

    */
    
    package securitycontext
    
    import (
    	"k8s.io/api/core/v1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // ValidSecurityContextWithContainerDefaults creates a valid security context provider based on
    // empty container defaults.  Used for testing.
    func ValidSecurityContextWithContainerDefaults() *v1.SecurityContext {
    	priv := false
    	defProcMount := v1.DefaultProcMount
    	return &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 20 19:43:52 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/experimental/public/function_metadata.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // FunctionMetadata stores additional function information, including
    // optional signaturedef feeds/fetches (for TF1-based ConcreteFunctions),
    // a valid function path (for TF2-based ConcreteFunctions), and
    // the types + number of inputs and outputs.
    class FunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class ConcreteFunction;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    //
    // Informer/Lister classes are thin wrappers providing a type-safe interface
    // over regular interface{}-based Informers/Listers
    //
    // Controller[T] provides a reusable way to reconcile objects out of an informer
    // using the tried and true controller design pattern found all over k8s
    // codebase based upon syncFunc/reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Platform.java

      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return Maps.newHashMapWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Platform.java

      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return CompactHashMap.createWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. pkg/credentialprovider/keyring.go

    // Lookup implements the DockerKeyring method for fetching credentials based on image name
    // return fake auth and ok
    func (f *FakeKeyring) Lookup(image string) ([]AuthConfig, bool) {
    	return f.auth, f.ok
    }
    
    // UnionDockerKeyring delegates to a set of keyrings.
    type UnionDockerKeyring []DockerKeyring
    
    // Lookup implements the DockerKeyring method for fetching credentials based on image name.
    // return each credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // Did not create a result
                    // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top