Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for scouse (0.85 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    		return Convert_v1_AppArmorProfile_To_core_AppArmorProfile(a.(*v1.AppArmorProfile), b.(*core.AppArmorProfile), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.AppArmorProfile)(nil), (*v1.AppArmorProfile)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_core_AppArmorProfile_To_v1_AppArmorProfile(a.(*core.AppArmorProfile), b.(*v1.AppArmorProfile), scope)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

    spec:
      group: crd.projectcalico.org
      names:
        kind: BGPConfiguration
        listKind: BGPConfigurationList
        plural: bgpconfigurations
        singular: bgpconfiguration
      preserveUnknownFields: false
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            description: BGPConfiguration contains the configuration for any BGP routing.
            properties:
              apiVersion:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

      names:
        categories:
        - gateway-api
        kind: GatewayClass
        listKind: GatewayClassList
        plural: gatewayclasses
        shortNames:
        - gc
        singular: gatewayclass
      scope: Cluster
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.controllerName
          name: Controller
          type: string
        - jsonPath: .status.conditions[?(@.type=="Accepted")].status
          name: Accepted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ## 0.13.0
    
    * Improve/upgrade OAuth2 scopes support with `SecurityScopes`:
        * `SecurityScopes` can be declared as a parameter like `Request`, to get the scopes of all super-dependencies/dependants.
        * Improve `Security` handling, merging scopes when declaring `SecurityScopes`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // If not specified, the quota matches all objects.
      // +optional
      repeated string scopes = 2;
    
      // scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
      // but expressed using ScopeSelectorOperator in combination with possible values.
      // For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"scopes":        "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	// ensure scopes cannot change, and that resources are still valid for scope
    	fldPath := field.NewPath("spec", "scopes")
    	oldScopes := sets.New[string]()
    	newScopes := sets.New[string]()
    	for _, scope := range newResourceQuota.Spec.Scopes {
    		newScopes.Insert(string(scope))
    	}
    	for _, scope := range oldResourceQuota.Spec.Scopes {
    		oldScopes.Insert(string(scope))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - The scheduler skips the `InterPodAffinity` Score plugin when nothing to do with the Pod.
      It will affect some metrics values related to the InterPodAffinity Score plugin. ([#117794](https://github.com/kubernetes/kubernetes/pull/117794), [@utam0k](https://github.com/utam0k)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    type ScopeSelector struct {
    	// A list of scope selector requirements by scope of the resources.
    	// +optional
    	MatchExpressions []ScopedResourceSelectorRequirement
    }
    
    // ScopedResourceSelectorRequirement is a selector that contains values, a scope name, and an operator
    // that relates the scope name and values.
    type ScopedResourceSelectorRequirement struct {
    	// The name of the scope that the selector applies to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-61800`](https://youtrack.jetbrains.com/issue/KT-61800) Analysis API: Provide separate declared member scopes for non-static and static callables
    - [`KT-61255`](https://youtrack.jetbrains.com/issue/KT-61255) Analysis API: Get rid of `valueOf`, `values` and `entries` from a declared member scope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top