Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for converge (0.42 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. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.21.md

    - The `EndpointSlice` API is now GA. The `EndpointSlice` topology field has been removed from the GA API and will be replaced by a new per Endpoint Zone field. If the topology field was previously used, it will be converted into an annotation in the v1 Resource. The `discovery.k8s.io/v1alpha1` API is removed. ([#99662](https://github.com/kubernetes/kubernetes/pull/99662), [@swetharepakula](https://github.com/swetharepakula))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.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: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// Default is false.
    	// +optional
    	TTY bool `json:"tty,omitempty" protobuf:"varint,18,opt,name=tty"`
    }
    
    // EphemeralContainerCommon converts to Container. All fields must be kept in sync between
    // these two types.
    var _ = Container(EphemeralContainerCommon{})
    
    // An EphemeralContainer is a temporary container that you may add to an existing Pod for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top