Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for initiatives (0.21 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

    ### SIG-cloud-provider
    
    This is the first Kubernetes release for this SIG! In v1.12, SIG Cloud Provider focused on building the processes and infrastructure to better support existing and new cloud providers. Some of these initiatives (many of which are still in progress) are:
    
    - Reporting E2E conformance test results to TestGrid from every cloud provider (in collaboration with SIG Testing & SIG Release)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  2. 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)
  3. CHANGELOG/CHANGELOG-1.15.md

    - Fixed a bug where cloud-controller-manager initializes nodes multiple times. ([#75405](https://github.com/kubernetes/kubernetes/pull/75405), [@tghartland](https://github.com/tghartland))
    
    ### Cluster Lifecycle
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.9.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 Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.16.md

    * The kube-apiserver has improved behavior for both startup and shutdown sequences and also now exposes `/readyz` for readiness checking. Readyz includes all existing healthz checks but also adds a shutdown check. When a cluster admin initiates a shutdown, the kube-apiserver will try to process existing requests (for the duration of request timeout) before killing the apiserver process.   ([#78458](https://github.com/kubernetes/kubernetes/pull/78458), [@logicalhan](https://github.com/logicalhan))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  9. 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