Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 101 for PROMOTED (0.32 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

    Here is a list of some of the changes that have been made to kubeadm:
    
    - Kubeadm internal config has been promoted to `v1alpha3`:
      - `v1alpha1` has been removed.
    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. src/html/template/exec_test.go

    		}
    	}
    }
    
    func TestInterfaceValues(t *testing.T) {
    	// golang.org/issue/17714.
    	// Before index worked on reflect.Values, interface values
    	// were always implicitly promoted to the underlying value,
    	// except that nil interfaces were promoted to the zero reflect.Value.
    	// Eliminating a round trip to interface{} and back to reflect.Value
    	// eliminated this promotion, breaking these cases.
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Promoted API groups `ValidatingAdmissionPolicy` and `ValidatingAdmissionPolicyBinding` to `v1beta1`. ([#118644](https://github.com/kubernetes/kubernetes/pull/118644), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery, Apps and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. src/text/template/exec_test.go

    		}
    	}
    }
    
    func TestInterfaceValues(t *testing.T) {
    	// golang.org/issue/17714.
    	// Before index worked on reflect.Values, interface values
    	// were always implicitly promoted to the underlying value,
    	// except that nil interfaces were promoted to the zero reflect.Value.
    	// Eliminating a round trip to interface{} and back to reflect.Value
    	// eliminated this promotion, breaking these cases.
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	FieldByIndex(index []int) StructField
    
    	// FieldByName returns the struct field with the given name
    	// and a boolean indicating if the field was found.
    	// If the returned field is promoted from an embedded struct,
    	// then Offset in the returned StructField is the offset in
    	// the embedded struct.
    	FieldByName(name string) (StructField, bool)
    
    	// FieldByNameFunc returns the struct field with a name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.16.md

    - The `CustomResourceDefaulting` feature is promoted to beta and enabled by default. Defaults may be specified in structural schemas via the `apiextensions.k8s.io/v1` API. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#specifying-a-structural-schema...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    			}
    			return +1
    		}
    		return slices.Compare(a.index, b.index)
    	})
    
    	// Delete all fields that are hidden by the Go rules for embedded fields,
    	// except that fields with JSON tags are promoted.
    
    	// The fields are sorted in primary order of name, secondary order
    	// of field index length. Loop over names; for each name, delete
    	// hidden fields by choosing the one dominant field that survives.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf.go

    	AbsFunSym Sym
    
    	// Indices of child inlines within Calls array above.
    	Children []int
    
    	// entries in this list are PAUTO's created by the inliner to
    	// capture the promoted formals and locals of the inlined callee.
    	InlVars []*Var
    
    	// PC ranges for this inlined call.
    	Ranges []Range
    
    	// Root call (not a child of some other call).
    	Root bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Promoted `CronJobTimeZone` feature to GA ([#115904](https://github.com/kubernetes/kubernetes/pull/115904), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.17.md

    * kube-apiserver: The `AdmissionConfiguration` type accepted by `--admission-control-config-file` has been promoted to `apiserver.config.k8s.io/v1` with no schema changes. ([#85098](https://github...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
Back to top