Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for layers (0.2 sec)

  1. pkg/controller/statefulset/stateful_set_control_test.go

    	"sync"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/informers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      fmt.Sprintf("%s-%d", name, sliceNum),
    			Namespace: namespace,
    			Labels:    map[string]string{discovery.LabelServiceName: name},
    		},
    	}
    	epsFunc(eps)
    	return eps
    }
    
    func TestCleanupLeftovers(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        fi
      fi
      flags+=" --volume-plugin-dir=${VOLUME_PLUGIN_DIR}"
      local node_labels
      node_labels="$(build-linux-node-labels "${node_type}")"
      if [[ -n "${node_labels:-}" ]]; then
        flags+=" --node-labels=${node_labels}"
      fi
      if [[ -n "${NODE_TAINTS:-}" ]]; then
        flags+=" --register-with-taints=${NODE_TAINTS}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		// is from replication
    		if opts.CheckDMReplicationReady {
    			topts := opts
    			topts.VersionID = ""
    			goi, gerr := getObjectInfo(ctx, bucket, object, topts)
    			if gerr == nil || goi.VersionID != "" { // object layer returned more info because object is deleted
    				w.Header().Set(xhttp.MinIOTargetReplicationReady, "true")
    			}
    		}
    
    		writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	}
    
    	// If the pod should not be running, we request the pod's containers be stopped. This is not the same
    	// as termination (we want to stop the pod, but potentially restart it later if soft admission allows
    	// it later). Set the status and phase appropriately
    	runnable := kl.canRunPod(pod)
    	if !runnable.Admit {
    		// Pod is not runnable; and update the Pod and Container statuses to why.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	return "preEnqueuePlugin"
    }
    
    func (pl *preEnqueuePlugin) PreEnqueue(ctx context.Context, p *v1.Pod) *framework.Status {
    	for _, allowed := range pl.allowlists {
    		for label := range p.Labels {
    			if label == allowed {
    				return nil
    			}
    		}
    	}
    	return framework.NewStatus(framework.UnschedulableAndUnresolvable, "pod name not in allowlists")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    ---
    # Source: grafana/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    automountServiceAccountToken: false
    metadata:
      labels:
        helm.sh/chart: grafana-8.0.1
        app.kubernetes.io/name: grafana
        app.kubernetes.io/instance: grafana
        app.kubernetes.io/version: "11.0.0"
        app.kubernetes.io/managed-by: Helm
      name: grafana
      namespace: istio-system
    ---
    # Source: grafana/templates/configmap.yaml
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	newg.ancestors = saveAncestors(callergp)
    	newg.startpc = fn.fn
    	if isSystemGoroutine(newg, false) {
    		sched.ngsys.Add(1)
    	} else {
    		// Only user goroutines inherit pprof labels.
    		if mp.curg != nil {
    			newg.labels = mp.curg.labels
    		}
    		if goroutineProfile.active {
    			// A concurrent goroutine profile is running. It should include
    			// exactly the set of goroutines that were alive when the goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

              .dyn_cast_or_null<ShapedType>();
      if (!broadcasted_ty ||
          (broadcasted_ty.hasRank() && broadcasted_ty.getRank() != 2))
        return op.emitOpError(
            "requires features and labels to be broadcast compatible to rank two");
    
      return success();
    }
    
    //===----------------------------------------------------------------------===//
    // SpaceToBatchNDOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      mount --bind -o ro /dev "${CONTAINERIZED_MOUNTER_ROOTFS}/dev"
      cp /etc/resolv.conf "${CONTAINERIZED_MOUNTER_ROOTFS}/etc/"
    }
    
    # Updates node labels used by addons.
    function update-legacy-addon-node-labels() {
      # need kube-apiserver to be ready
      until kubectl get nodes; do
        sleep 5
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top