Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,060 for associateBy (0.29 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_HTTPIngressPath = map[string]string{
    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/ClassLoaderWorkerSpec.java

     * A worker spec providing the requirements of an isolated classpath.
     *
     * @since 5.6
     */
    public interface ClassLoaderWorkerSpec extends WorkerSpec {
        /**
         * Gets the classpath associated with the worker.
         *
         * @return the classpath associated with the worker
         */
        ConfigurableFileCollection getClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/rewrite5.golden

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Rewriting of expressions containing nodes with associated comments to
    // expressions without those nodes must also eliminate the associated
    // comments.
    
    package p
    
    func f(x int) int {
    	_ = 2 * x // this comment remains in the rewrite
    	_ = 2 * x
    	return 2 * x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 446 bytes
    - Viewed (0)
  4. src/net/http/header.go

    // It appends to any existing values associated with key.
    // The key is case insensitive; it is canonicalized by
    // [CanonicalHeaderKey].
    func (h Header) Add(key, value string) {
    	textproto.MIMEHeader(h).Add(key, value)
    }
    
    // Set sets the header entries associated with key to the
    // single element value. It replaces any existing values
    // associated with key. The key is case insensitive; it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/metrics/interfaces.go

    	// GetRawMetric gets the given metric (and an associated oldest timestamp)
    	// for all pods matching the specified selector in the given namespace
    	GetRawMetric(metricName string, namespace string, selector labels.Selector, metricSelector labels.Selector) (PodMetricsInfo, time.Time, error)
    
    	// GetObjectMetric gets the given metric (and an associated timestamp) for the given
    	// object in the given namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. pkg/registry/rbac/escalation_check.go

    	rbac.SchemeGroupVersion.WithResource("roles").GroupResource():        true,
    }
    
    // RoleEscalationAuthorized checks if the user associated with the context is explicitly authorized to escalate the role resource associated with the context
    func RoleEscalationAuthorized(ctx context.Context, a authorizer.Authorizer) bool {
    	if a == nil {
    		return false
    	}
    
    	user, ok := genericapirequest.UserFrom(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/rewrite5.input

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Rewriting of expressions containing nodes with associated comments to
    // expressions without those nodes must also eliminate the associated
    // comments.
    
    package p
    
    func f(x int) int {
    	_ = x + x // this comment remains in the rewrite
    	_ = x /* this comment must not be in the rewrite */ + x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 538 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1/types.go

    	// +optional
    	LimitedResources []LimitedResource `json:"limitedResources"`
    }
    
    // LimitedResource matches a resource whose consumption is limited by default.
    // To consume the resource, there must exist an associated quota that limits
    // its consumption.
    type LimitedResource struct {
    
    	// APIGroup is the name of the APIGroup that contains the limited resource.
    	// +optional
    	APIGroup string `json:"apiGroup,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/types.go

    	// +optional
    	LimitedResources []LimitedResource `json:"limitedResources"`
    }
    
    // LimitedResource matches a resource whose consumption is limited by default.
    // To consume the resource, there must exist an associated quota that limits
    // its consumption.
    type LimitedResource struct {
    
    	// APIGroup is the name of the APIGroup that contains the limited resource.
    	// +optional
    	APIGroup string `json:"apiGroup,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
Back to top