Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 377 for V1alpha2 (0.42 sec)

  1. pkg/controller/resourceclaim/controller_test.go

    			podInformer := informerFactory.Core().V1().Pods()
    			podSchedulingInformer := informerFactory.Resource().V1alpha2().PodSchedulingContexts()
    			claimInformer := informerFactory.Resource().V1alpha2().ResourceClaims()
    			templateInformer := informerFactory.Resource().V1alpha2().ResourceClaimTemplates()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		claimLister:                fh.SharedInformerFactory().Resource().V1alpha2().ResourceClaims().Lister(),
    		classLister:                fh.SharedInformerFactory().Resource().V1alpha2().ResourceClasses().Lister(),
    		podSchedulingContextLister: fh.SharedInformerFactory().Resource().V1alpha2().PodSchedulingContexts().Lister(),
    		claimParametersLister:      fh.SharedInformerFactory().Resource().V1alpha2().ResourceClaimParameters().Lister(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/state/state_checkpoint.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package state
    
    import (
    	"fmt"
    	"sync"
    
    	resourcev1alpha2 "k8s.io/api/resource/v1alpha2"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager"
    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager/errors"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

              "kind": "StorageVersionList",
              "version": "v1alpha1"
            }
          ]
        },
        "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec": {
          "description": "StorageVersionSpec is an empty spec.",
          "type": "object"
        },
        "io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/namedresources.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.
    */
    
    package v1alpha2
    
    import (
    	"k8s.io/apimachinery/pkg/api/resource"
    )
    
    // NamedResourcesResources is used in ResourceModel.
    type NamedResourcesResources struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. hack/lib/init.sh

    certificates.k8s.io/v1 \
    certificates.k8s.io/v1beta1 \
    certificates.k8s.io/v1alpha1 \
    coordination.k8s.io/v1beta1 \
    coordination.k8s.io/v1 \
    discovery.k8s.io/v1 \
    discovery.k8s.io/v1beta1 \
    resource.k8s.io/v1alpha2 \
    extensions/v1beta1 \
    events.k8s.io/v1 \
    events.k8s.io/v1beta1 \
    imagepolicy.k8s.io/v1alpha1 \
    networking.k8s.io/v1 \
    networking.k8s.io/v1alpha1 \
    networking.k8s.io/v1beta1 \
    node.k8s.io/v1 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/plugin/noderesources.go

    	"google.golang.org/grpc/status"
    
    	v1 "k8s.io/api/core/v1"
    	resourceapi "k8s.io/api/resource/v1alpha2"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	resourceinformers "k8s.io/client-go/informers/resource/v1alpha2"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/gateway_test.go

        namespace: istio-system
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get/
        backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - backendRefs:
        - name: b
          port: 80
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/claiminfo.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package dra
    
    import (
    	"fmt"
    	"sync"
    
    	resourcev1alpha2 "k8s.io/api/resource/v1alpha2"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/kubelet/cm/dra/state"
    	"k8s.io/kubernetes/pkg/kubelet/cm/util/cdi"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Resource().V1alpha2().PodSchedulingContexts(),
    		controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaims(),
    		controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaimTemplates())
    	if err != nil {
    		return nil, true, fmt.Errorf("failed to start resource claim controller: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top