Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for initiatives (0.15 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    					}
    					if len(createdSvc.Spec.ClusterIPs) != 0 {
    						t.Errorf("expected no clusterIPs, got %q", createdSvc.Spec.ClusterIPs)
    					}
    				})
    			}
    		})
    	}
    }
    
    // Prove that create initializes clusterIPs from clusterIP.  This simplifies
    // later tests to not need to re-prove this.
    func TestCreateInitClusterIPsFromClusterIP(t *testing.T) {
    	testCases := []struct {
    		name            string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * Deprecate auto detecting cloud providers in kubelet. Auto detecting cloud providers go against the initiative for out-of-tree cloud providers as we'll now depend on cAdvisor integrations with cloud providers instead of the core repo. In the near future, `--cloud-provider` for kubelet will either be an empty string or `external`.  ([#51312](https://gith...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	readFn   func()          // optional code to run in Read before error
    }
    
    type http2pipeBuffer interface {
    	Len() int
    	io.Writer
    	io.Reader
    }
    
    // setBuffer initializes the pipe buffer.
    // It has no effect if the pipe is already closed.
    func (p *http2pipe) setBuffer(b http2pipeBuffer) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	if p.err != nil || p.breakErr != nil {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Kubelet, when using cloud provider external, initializes temporary the node addresses using the --node-ip flag values if set, until the cloud provider overrides it. ([#121028](https://github.com/kubernetes/kubernetes/pull/121028), [@aojea](https://github.com/aojea)) [SIG Cloud Provider and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. doc/go_spec.html

    new(T)
    </pre>
    
    <p>
    For instance
    </p>
    
    <pre>
    type S struct { a int; b float64 }
    new(S)
    </pre>
    
    <p>
    allocates storage for a variable of type <code>S</code>,
    initializes it (<code>a=0</code>, <code>b=0.0</code>),
    and returns a value of type <code>*S</code> containing the address
    of the location.
    </p>
    
    
    <h3 id="Handling_panics">Handling panics</h3>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top