Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for scouse (0.19 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    	if in.Hard != nil {
    		in, out := &in.Hard, &out.Hard
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Scopes != nil {
    		in, out := &in.Scopes, &out.Scopes
    		*out = make([]ResourceQuotaScope, len(*in))
    		copy(*out, *in)
    	}
    	if in.ScopeSelector != nil {
    		in, out := &in.ScopeSelector, &out.ScopeSelector
    		*out = new(ScopeSelector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	if in.Hard != nil {
    		in, out := &in.Hard, &out.Hard
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Scopes != nil {
    		in, out := &in.Scopes, &out.Scopes
    		*out = make([]ResourceQuotaScope, len(*in))
    		copy(*out, *in)
    	}
    	if in.ScopeSelector != nil {
    		in, out := &in.ScopeSelector, &out.ScopeSelector
    		*out = new(ScopeSelector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// Generic PLEG relies on relisting for discovering container events.
    	// A longer period means that kubelet will take longer to detect container
    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				}
    				// NOTE: On Windows, time.Now() is not as precise, 2 consecutive calls may return the same timestamp,
    				// resulting in 0 time delta / latency. This will cause the pods to be backed off in a random
    				// order, which would cause this test to fail, since the expectation is for them to be backed off
    				// in a certain order.
    				// See: https://github.com/golang/go/issues/8687
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		if fc == "" {
    			fc = "gfortran"
    		}
    		if strings.Contains(fc, "gfortran") {
    			cgoLDFLAGS = append(cgoLDFLAGS, "-lgfortran")
    		}
    	}
    
    	// Scrutinize CFLAGS and related for flags that might cause
    	// problems if we are using internal linking (for example, use of
    	// plugins, LTO, etc) by calling a helper routine that builds on
    	// the existing CGO flags allow-lists. If we see anything
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // an addressable array of bytes.
    func (v Value) Bytes() []byte {
    	// bytesSlow is split out to keep Bytes inlineable for unnamed []byte.
    	if v.typ_ == bytesType { // ok to use v.typ_ directly as comparison doesn't cause escape
    		return *(*[]byte)(v.ptr)
    	}
    	return v.bytesSlow()
    }
    
    func (v Value) bytesSlow() []byte {
    	switch v.kind() {
    	case Slice:
    		if v.typ().Elem().Kind() != abi.Uint8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			if !ok {
    				t.Fatalf("unexpected object %v", newObj)
    			}
    			pod.Labels = map[string]string{
    				"modified": "true",
    			}
    			return pod, nil
    		}
    
    		go func() {
    			// This update will cause the Delete to retry due to conflict.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Assumption of this pass:
         . Compound resource operations have already been decomposed.
         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
      let constructor = "TF::CreatePromoteResourcesToArgsPass()";
    
    let options = [
        ListOption<"functions_", "functions", "std::string",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		}
    		// Access the log of a container that's not in the pod
    		_, err = kubelet.validateContainerLogStatus("podName", podStatus, "blah", false)
    		assert.Error(t, err, fmt.Sprintf("[case %d] invalid container name should cause an error", i))
    	}
    }
    
    func TestCreateMirrorPod(t *testing.T) {
    	tests := []struct {
    		name       string
    		updateType kubetypes.SyncPodType
    	}{
    		{
    			name:       "SyncPodCreate",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    }
    
    // splitPodsByStatic separates a list of desired pods from the pod manager into
    // regular or static pods. Mirror pods are not valid config sources (a mirror pod
    // being created cannot cause the Kubelet to start running a static pod) and are
    // excluded.
    func splitPodsByStatic(pods []*v1.Pod) (regular, static []*v1.Pod) {
    	regular, static = make([]*v1.Pod, 0, len(pods)), make([]*v1.Pod, 0, len(pods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top