Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for broken1 (0.2 sec)

  1. CHANGELOG/CHANGELOG-1.16.md

    - Generating informers for packages in directories containing dots in their name is broken. This will be fixed in v1.16.1. ([#82860](https://github.com/kubernetes/kubernetes/issues/82860))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.20.md

    - Fix: azure disk resize error if source does not exist ([#93011](https://github.com/kubernetes/kubernetes/pull/93011), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    - Fix: detach azure disk broken on Azure Stack ([#94885](https://github.com/kubernetes/kubernetes/pull/94885), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // meant to be used by the pod, the PVC has to updated with an
      // owner reference to the pod once the pod exists. Normally
      // this should not be necessary, but it may be useful when
      // manually reconstructing a broken cluster.
      //
      // This field is read-only and no changes will be made by Kubernetes
      // to the PVC after it has been created.
      //
      // Required, must not be nil.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// meant to be used by the pod, the PVC has to updated with an
    	// owner reference to the pod once the pod exists. Normally
    	// this should not be necessary, but it may be useful when
    	// manually reconstructing a broken cluster.
    	//
    	// This field is read-only and no changes will be made by Kubernetes
    	// to the PVC after it has been created.
    	//
    	// Required, must not be nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (EphemeralVolumeSource) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    	if before == nil && after != nil {
    		return "create"
    	}
    	if before != nil && after != nil {
    		return "update"
    	}
    	if before != nil && after == nil {
    		return "delete"
    	}
    	panic("this test is broken: before and after are both nil")
    }
    
    func ipIsAllocated(t *testing.T, alloc ipallocator.Interface, ipstr string) bool {
    	t.Helper()
    	ip := netutils.ParseIPSloppy(ipstr)
    	if ip == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.17.md

    - Fix: detach azure disk broken on Azure Stack ([#94885](https://github.com/kubernetes/kubernetes/pull/94885), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	}
    	switch service.Spec.Type {
    	case core.ServiceTypeLoadBalancer:
    		for ix := range service.Spec.Ports {
    			port := &service.Spec.Ports[ix]
    			// This is a workaround for broken cloud environments that
    			// over-open firewalls.  Hopefully it can go away when more clouds
    			// understand containers better.
    			if port.Port == ports.KubeletPort {
    				portPath := specPath.Child("ports").Index(ix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // meant to be used by the pod, the PVC has to updated with an
      // owner reference to the pod once the pod exists. Normally
      // this should not be necessary, but it may be useful when
      // manually reconstructing a broken cluster.
      //
      // This field is read-only and no changes will be made by Kubernetes
      // to the PVC after it has been created.
      //
      // Required, must not be nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. doc/go_spec.html

    <p>
    The formal syntax uses semicolons <code>";"</code> as terminators in
    a number of productions. Go programs may omit most of these semicolons
    using the following two rules:
    </p>
    
    <ol>
    <li>
    When the input is broken into tokens, a semicolon is automatically inserted
    into the token stream immediately after a line's final token if that token is
    <ul>
    	<li>an
    	    <a href="#Identifiers">identifier</a>
    	</li>
    
    	<li>an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top