Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,871 for Pull (0.06 sec)

  1. OWNERS_ALIASES

    aliases:
      # Note: sig-architecture-approvers has approval on root files (including go.mod/go.sum) until https://github.com/kubernetes/test-infra/pull/21398 is resolved.
      # People with approve rights via this alias should defer dependency update PRs to dep-approvers.
      sig-architecture-approvers:
        - dims
        - derekwaynecarr
        - johnbelamaric
      # sig-auth subproject aliases
      sig-auth-audit-approvers:
        - sttts
        - tallclair
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks.go

    func (ipc ImagePullCheck) Check() (warnings, errorList []error) {
    	// Handle unsupported image pull policy and policy Never.
    	policy := ipc.imagePullPolicy
    	switch policy {
    	case v1.PullAlways, v1.PullIfNotPresent:
    		klog.V(1).Infof("using image pull policy: %s", policy)
    	case v1.PullNever:
    		klog.V(1).Infof("skipping the pull of all images due to policy: %s", policy)
    		return warnings, errorList
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime_test.go

    func TestPullImage(t *testing.T) {
    	for _, tc := range []struct {
    		name        string
    		prepare     func(*fakeImpl)
    		shouldError bool
    	}{
    		{
    			name: "valid",
    		},
    		{
    			name: "invalid: pull image fails",
    			prepare: func(mock *fakeImpl) {
    				mock.PullImageReturns("", errTest)
    			},
    			shouldError: true,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. build/common.sh

        return 1
      fi
    }
    
    function kube::build::has_docker() {
      which docker &> /dev/null
    }
    
    function kube::build::has_ip() {
      which ip &> /dev/null && ip -Version | grep 'iproute2' &> /dev/null
    }
    
    # Detect if a specific image exists
    #
    # $1 - image repo name
    # $2 - image tag
    function kube::build::docker_image_exists() {
      [[ -n $1 && -n $2 ]] || {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	}
    	// When the QueueingHint feature is enabled,
    	// the scheduling queue uses Pod/Update Queueing Hint
    	// to determine whether a Pod's update makes the Pod schedulable or not.
    	// https://github.com/kubernetes/kubernetes/pull/122234
    	return []framework.ClusterEventWithHint{
    		// Pods can be more schedulable once it's gates are removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. docs/pt/docs/help-fastapi.md

    * Sugira novos **recursos**.
    
    **Nota**: Se você fizer uma pergunta, então eu gostaria de pedir que você também ajude os outros com suas respectivas perguntas. 😉
    
    ## Crie um Pull Request
    
    É possível [contribuir](contributing.md){.internal-link target=_blank} no código fonte fazendo Pull Requests, por exemplo:
    
    * Para corrigir um erro de digitação que você encontrou na documentação.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    					t.Fatal(errors)
    				}
    			},
    		},
    		{
    			name:               "invalid annotation update",
    			group:              "sigs.k8s.io",
    			annotationValue:    "invalid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    }
    
    func TestPullImageWithError(t *testing.T) {
    	ctx := context.Background()
    	_, fakeImageService, fakeManager, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    	// trying to pull an image with an invalid name should return an error
    	imageRef, err := fakeManager.PullImage(ctx, kubecontainer.ImageSpec{Image: ":invalid"}, nil, nil)
    	assert.Error(t, err)
    	assert.Equal(t, "", imageRef)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_op_order.cc

        // Set the output type of the dequantize op and push it down.
        dequantize_op.getOutput().setType(output_type);
        passthrough_op->replaceAllUsesWith(dequantize_op);
    
        // Set the input type of the passthrough op and pull it up.
        Type new_output_type;
        if (mlir::isa<quant::QuantizedType>(input_element_type)) {
          new_output_type = QuantizedType::getQuantizedElementType(
                                dequantize_op.getInput().getType())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. manifests/charts/gateway/values.yaml

      tolerations: []
    
      topologySpreadConstraints: []
    
      affinity: {}
    
      # If specified, the gateway will act as a network gateway for the given network.
      networkGateway: ""
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent
      imagePullPolicy: ""
    
      imagePullSecrets: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top