Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,864 for InterfaceA (0.17 sec)

  1. src/net/interface.go

    	FlagBroadcast                      // interface supports broadcast access capability
    	FlagLoopback                       // interface is a loopback interface
    	FlagPointToPoint                   // interface belongs to a point-to-point link
    	FlagMulticast                      // interface supports multicast access capability
    	FlagRunning                        // interface is in running state
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    */
    
    // Package cel contains the CEL related interfaces and structs for authentication.
    package cel
    
    import (
    	"context"
    
    	celgo "github.com/google/cel-go/cel"
    	"github.com/google/cel-go/common/types/ref"
    
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    )
    
    // ExpressionAccessor is an interface that provides access to a CEL expression.
    type ExpressionAccessor interface {
    	GetExpression() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    //	}
    type WantsFeatures interface {
    	InspectFeatureGates(featuregate.FeatureGate)
    	admission.InitializationValidator
    }
    
    type WantsDynamicClient interface {
    	SetDynamicClient(dynamic.Interface)
    	admission.InitializationValidator
    }
    
    // WantsRESTMapper defines a function which sets RESTMapper for admission plugins that need it.
    type WantsRESTMapper interface {
    	SetRESTMapper(meta.RESTMapper)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    // otherwise the default implementation will be used, which is less efficient in requeueing Pods rejected by the plugin.
    // And, if plugins other than above extension points support this interface, they are just ignored.
    type EnqueueExtensions interface {
    	Plugin
    	// EventsToRegister returns a series of possible events that may cause a Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradlebuild/Interface.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradlebuild;
    
    public interface Interface {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 675 bytes
    - Viewed (0)
  6. schema/interfaces.go

    type CreateClausesInterface interface {
    	CreateClauses(*Field) []clause.Interface
    }
    
    // QueryClausesInterface query clauses interface
    type QueryClausesInterface interface {
    	QueryClauses(*Field) []clause.Interface
    }
    
    // UpdateClausesInterface update clauses interface
    type UpdateClausesInterface interface {
    	UpdateClauses(*Field) []clause.Interface
    }
    
    // DeleteClausesInterface delete clauses interface
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 980 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/environment"
    )
    
    type ExpressionAccessor interface {
    	GetExpression() string
    	ReturnTypes() []*cel.Type
    }
    
    // NamedExpressionAccessor extends NamedExpressionAccessor with a name.
    type NamedExpressionAccessor interface {
    	ExpressionAccessor
    
    	GetName() string // follows the naming convention of ExpressionAccessor
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/interfaces.go

    // policy. For webhook, the Hook may describe how to contact the endpoint, expected
    // cert, etc. For policies, the hook may describe a compiled policy-binding pair.
    type Hook interface {
    	// All hooks are expected to contain zero or more match conditions, object
    	// selectors, namespace selectors to help the dispatcher decide when to apply
    	// the hook.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    			objMeta.GetResourceVersion())
    		return NewInvalidObjError(key, err)
    	}
    	return nil
    }
    
    // Interface offers a common interface for object marshaling/unmarshaling operations and
    // hides all the storage-related operations behind it.
    type Interface interface {
    	// Returns Versioner associated with this interface.
    	Versioner() Versioner
    
    	// Create adds a new object at a key unless it already exists. 'ttl' is time-to-live
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/kube/kclient/interfaces.go

    type Reader[T controllers.Object] interface {
    	// Get looks up an object by name and namespace. If it does not exist, nil is returned
    	Get(name, namespace string) T
    	// List looks up an object by namespace and labels.
    	// Use metav1.NamespaceAll and klabels.Everything() to select everything.
    	List(namespace string, selector klabels.Selector) []T
    }
    
    type Informer[T controllers.Object] interface {
    	Reader[T]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top