Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for cri (0.02 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_fake_test.go

    package runtime
    
    import (
    	"context"
    	"time"
    
    	cri "k8s.io/cri-api/pkg/apis"
    	v1 "k8s.io/cri-api/pkg/apis/runtime/v1"
    )
    
    type fakeImpl struct {
    	imageStatusReturns struct {
    		res *v1.ImageStatusResponse
    		err error
    	}
    	listPodSandboxReturns struct {
    		res []*v1.PodSandbox
    		err error
    	}
    	newRemoteImageServiceReturns struct {
    		res cri.ImageManagerService
    		err error
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/runtime/runtime.go

    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    // defaultKnownCRISockets holds the set of known CRI endpoints
    var defaultKnownCRISockets = []string{
    	constants.CRISocketContainerd,
    	constants.CRISocketCRIO,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//      src: https://github.com/moby/moby/blob/10866714412aea1bb587d1ad14b2ce1ba4cf4308/daemon/oci_windows.go#L426
    		// Part three - CRI & ContainerD's implementation
    		//   The kubelet sets these directly on CGroups in Linux, but needs to pass them across CRI on Windows.
    		//   There is an existing cpu_maximum field, with a range of percent * 100, so 1-10000. This is different from Docker, but consistent with OCI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/runtime/impl.go

    limitations under the License.
    */
    
    package runtime
    
    import (
    	"context"
    	"time"
    
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	criclient "k8s.io/cri-client/pkg"
    )
    
    type defaultImpl struct{}
    
    type impl interface {
    	NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (criapi.RuntimeService, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. go.work

    	./staging/src/k8s.io/code-generator
    	./staging/src/k8s.io/component-base
    	./staging/src/k8s.io/component-helpers
    	./staging/src/k8s.io/controller-manager
    	./staging/src/k8s.io/cri-api
    	./staging/src/k8s.io/cri-client
    	./staging/src/k8s.io/csi-translation-lib
    	./staging/src/k8s.io/dynamic-resource-allocation
    	./staging/src/k8s.io/endpointslice
    	./staging/src/k8s.io/kms
    	./staging/src/k8s.io/kube-aggregator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. staging/publishing/import-restrictions.yaml

      - k8s.io/endpointslice
      - k8s.io/klog
      - k8s.io/utils
    
    - baseImportPath: "./staging/src/k8s.io/cri-client"
      allowedImports:
      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/apiserver
      - k8s.io/client-go
      - k8s.io/component-base
      - k8s.io/cri-api
      - k8s.io/cri-client
      - k8s.io/klog/v2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client.go

    		case signatureECDSA, signatureEd25519:
    			if ecAvail {
    				cri.SignatureSchemes = append(cri.SignatureSchemes, sigScheme)
    			}
    		case signatureRSAPSS, signaturePKCS1v15:
    			if rsaAvail {
    				cri.SignatureSchemes = append(cri.SignatureSchemes, sigScheme)
    			}
    		}
    	}
    
    	return cri
    }
    
    func (c *Conn) getClientCertificate(cri *CertificateRequestInfo) (*Certificate, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  8. staging/README.md

    - [`k8s.io/component-helpers`](https://github.com/kubernetes/component-helpers)
    - [`k8s.io/controller-manager`](https://github.com/kubernetes/controller-manager)
    - [`k8s.io/cri-api`](https://github.com/kubernetes/cri-api)
    - [`k8s.io/cri-client`](https://github.com/kubernetes/cri-client)
    - [`k8s.io/csi-translation-lib`](https://github.com/kubernetes/csi-translation-lib)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. hack/logcheck.conf

    contextual k8s.io/client-go/metadata/.*
    contextual k8s.io/client-go/tools/events/.*
    contextual k8s.io/client-go/tools/record/.*
    contextual k8s.io/component-helpers/.*
    contextual k8s.io/cri-api/.*
    contextual k8s.io/cri-client/.*
    contextual k8s.io/dynamic-resource-allocation/.*
    contextual k8s.io/endpointslice/.*
    contextual k8s.io/kms/.*
    contextual k8s.io/kube-controller-manager/.*
    contextual k8s.io/kube-proxy/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/publishing/rules.yaml

          dirs:
          - staging/src/k8s.io/cri-api
      - name: release-1.29
        go: 1.21.11
        source:
          branch: release-1.29
          dirs:
          - staging/src/k8s.io/cri-api
      - name: release-1.30
        go: 1.22.4
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/cri-api
      library: true
    - destination: cri-client
      branches:
      - name: master
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top