Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 135 for makeID (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

      - [alpha] The `kubeadm` tool makes it much easier to bootstrap Kubernetes. ([docs](http://kubernetes.io/docs/getting-started-guides/kubeadm/)) ([kubernetes/features#11](https://github.com/kubernetes/enhancements/issues/11))
    - **Federation**
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				Spec:       example.PodSpec{NodeName: "machine"},
    			},
    			deleted: true,
    		},
    	}
    
    	for _, test := range tests {
    		ready := make(chan struct{})
    		updated := make(chan struct{})
    		var readyOnce, updatedOnce sync.Once
    		var called int
    		deleteValidation := func(ctx context.Context, obj runtime.Object) error {
    			readyOnce.Do(func() {
    				close(ready)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta1/generated.pb.go

    	0x01, 0x00, 0x00, 0xff, 0xff, 0x5b, 0x05, 0xaa, 0x18, 0x85, 0x1c, 0x00, 0x00,
    }
    
    func (m *ContainerResourceMetricSource) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *ContainerResourceMetricSource) MarshalTo(dAtA []byte) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	changed := false
    
    	var params []AST
    	if len(re.Params) > 0 {
    		params = make([]AST, len(re.Params))
    		for i, p := range re.Params {
    			pc := p.Copy(fn, skip)
    			if pc == nil {
    				params[i] = p
    			} else {
    				params[i] = pc
    				changed = true
    			}
    		}
    	}
    
    	requirements := make([]AST, len(re.Requirements))
    	for i, r := range re.Requirements {
    		rc := r.Copy(fn, skip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    	manager.podStoreSynced = alwaysReady
    	manager.jobStoreSynced = alwaysReady
    
    	var testJob batch.Job
    	received := make(chan struct{})
    
    	// The update sent through the fakeWatcher should make its way into the workqueue,
    	// and eventually into the syncHandler.
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		defer close(received)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	c.Assert(err, nil)
    
    	// execute the upload request.
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// assert the http response.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// make HTTP request to fetch the object.
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, objectName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_test.go

    				t.Errorf("expected MaxDirectResponseBodySizeBytes %v, got %v",
    					istio_route.DefaultMaxDirectResponseBodySizeBytes, r.MaxDirectResponseBodySizeBytes)
    			}
    			vh := make(map[string][]string)
    			hr := make(map[string]int)
    			for _, h := range r.VirtualHosts {
    				vh[h.Name] = h.Domains
    				hr[h.Name] = len(h.Routes)
    				if h.Name != "blackhole:80" && !h.IncludeRequestAttemptCount {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // unless it is being referred to by that import path. In this way, import comments
    // let package authors make sure the custom import path is used and not a
    // direct path to the underlying code hosting site.
    //
    // Import path checking is disabled for code found within vendor trees.
    // This makes it possible to copy code into alternate locations in vendor trees
    // without needing to update import comments.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // control/data edges between them will only be reflected in host graph.
      // From XLA's perspective, two originally dependent clusters are no longer
      // connected, which makes them look like they can be scheduled for execution
      // in arbitrary order even though in fact they must be executed in order
      // according to their host-side graph dependency. This can cause deadlock.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status_test.go

    	if selector != nil {
    		opts.LabelSelector = selector.String()
    	}
    	nodeList, err := l.client.CoreV1().Nodes().List(context.Background(), opts)
    	if err != nil {
    		return nil, err
    	}
    	nodes := make([]*v1.Node, len(nodeList.Items))
    	return nodes, nil
    }
    
    func TestUpdateNewNodeStatus(t *testing.T) {
    	cases := []struct {
    		desc                string
    		nodeStatusMaxImages int32
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top