Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for converge (0.76 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      \n Implementations should prefer to express Gateway conditions using
                      the `GatewayConditionType` and `GatewayConditionReason` constants
                      so that operators and tools can converge on a common vocabulary
                      to describe Gateway state. \n Known condition types are: \n * \"Accepted\"
                      * \"Programmed\" * \"Ready\""
                    items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <pre>
    *Point(p)        // same as *(Point(p))
    (*Point)(p)      // p is converted to *Point
    &lt;-chan int(c)    // same as &lt;-(chan int(c))
    (&lt;-chan int)(c)  // c is converted to &lt;-chan int
    func()(x)        // function signature func() x
    (func())(x)      // x is converted to func()
    (func() int)(x)  // x is converted to func() int
    func() int(x)    // x is converted to func() int (unambiguous)
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			// simulate the recursive validation calls
    			conversionCount := 0
    			converter := func(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error) {
    				conversionCount++
    				return defaultConverter(schema, isRoot)
    			}
    			celContext := RootCELContext(tt.schema)
    			celContext.converter = converter
    			opts := validationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

    * **[stable]** Volume plugin for Portworx added capability to use [Portworx](http://www.portworx.com) as a storage provider for Kubernetes clusters. Portworx pools server capacity and turns servers or cloud instances into converged, highly available compute and storage nodes.
    * **[stable]** Add support to use NFSv3, NFSv4, and GlusterFS on GCE/GKE GCI image based clusters.
    * **[beta]** Added support for mount options in persistent volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	store.Aux = t
    	s.vars[memVar] = store
    }
    
    // stmtList converts the statement list n to SSA and adds it to s.
    func (s *state) stmtList(l ir.Nodes) {
    	for _, n := range l {
    		s.stmt(n)
    	}
    }
    
    // stmt converts the statement n to SSA and adds it to s.
    func (s *state) stmt(n ir.Node) {
    	s.pushLine(n.Pos())
    	defer s.popLine()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

        * [StorageOS](http://www.storageos.com) can be used as a storage provider for Kubernetes.  With StorageOS, capacity from local or attached storage is pooled across the cluster, providing converged infrastructure for cloud-native applications.
    * CRI has been moved to package `pkg/kubelet/apis/cri/v1alpha1/runtime`. ([#47113](https://github.com/kubernetes/kubernetes/pull/47113), [@feiskyer](https://github.com/feiskyer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.15.md

    #### Continuous Improvement
    - Project sustainability is not just about features. Many SIGs have been working on  improving test coverage, ensuring the basics stay reliable, and stability of the core feature set and working on maturing existing features and cleaning up the backlog.
    
    #### Extensibility
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.12.md

    - The systemd config files are now reloaded before kubelet starts, so changes can take effect([#65702](https://github.com/kubernetes/kubernetes/pull/65702), [@mborsz](https://github.com/mborsz))
    - Hostnames are now converted to lowercase before being used for node lookups in the kubernetes-worker charm. ([#65487](https://github.com/kubernetes/kubernetes/pull/65487), [@dshcherb](https://github.com/dshcherb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    // connError represents an HTTP/2 ConnectionError error code, along
    // with a string (for debugging) explaining why.
    //
    // Errors of this type are only returned by the frame parser functions
    // and converted into ConnectionError(Code), after stashing away
    // the Reason into the Framer's errDetail field, accessible via
    // the (*Framer).ErrorDetail method.
    type http2connError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top